From 8fbc7b848a09b8723932a151b6271ba5684f2033 Mon Sep 17 00:00:00 2001 From: Hannes <31671206+xJuvi@users.noreply.github.com> Date: Thu, 3 Jul 2025 16:29:21 +0200 Subject: [PATCH 1/2] fix cache action --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ba62888..6877c97 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: if: matrix.os == 'windows-latest' run: git config --global core.autocrlf false - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 with: @@ -43,7 +43,7 @@ jobs: id: composer-cache run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }} @@ -56,4 +56,4 @@ jobs: if: matrix.dependencies == 'highest' run: composer update --no-ansi --no-interaction --no-progress --ignore-platform-reqs - name: Run tests with phpunit - run: composer test \ No newline at end of file + run: composer test From 564b8785ae6dec9217377aa18b965da706c3efdc Mon Sep 17 00:00:00 2001 From: Hannes <31671206+xJuvi@users.noreply.github.com> Date: Thu, 3 Jul 2025 16:32:53 +0200 Subject: [PATCH 2/2] add new php versions (8.2 - 8.4) --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6877c97..9dfd627 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,6 +19,9 @@ jobs: php-version: - 8 - 8.1 + - 8.2 + - 8.3 + - 8.4 phpunit-version: - 9.5.4 dependencies: