From bdd0aa074a72a6b9193d9a0002862a422541f442 Mon Sep 17 00:00:00 2001 From: arhimede Date: Tue, 21 Apr 2026 15:52:50 +0300 Subject: [PATCH] update Qodana action file Signed-off-by: arhimede --- .github/workflows/qodana_code_quality.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/qodana_code_quality.yml b/.github/workflows/qodana_code_quality.yml index 217b7ee..bb948f4 100644 --- a/.github/workflows/qodana_code_quality.yml +++ b/.github/workflows/qodana_code_quality.yml @@ -4,7 +4,7 @@ on: pull_request: push: branches: - - 1.0 + - '1.0' - 'releases/*' jobs: @@ -16,9 +16,9 @@ jobs: checks: write strategy: matrix: - php-versions: [ '8.2', '8.3', '8.4', '8.5' ] + php-versions: [ '8.3', '8.4', '8.5' ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: # to check out the actual pull request commit, not the merge commit ref: ${{ github.event.pull_request.head.sha }} @@ -35,7 +35,7 @@ jobs: run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV - name: Cache dependencies installed with composer - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.COMPOSER_CACHE_DIR }} key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}