diff --git a/.github/workflows.inactive/ci.yaml b/.github/workflows.inactive/ci.yaml index 52b91f6..93f77ad 100644 --- a/.github/workflows.inactive/ci.yaml +++ b/.github/workflows.inactive/ci.yaml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [ master ] + branches: [ main ] pull_request: - branches: [ master ] + branches: [ main ] jobs: tests: @@ -23,6 +23,9 @@ jobs: php-version: - "7.4" + - "8.1" + - "8.2" + - "8.3" compiler: - default @@ -32,7 +35,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Override PHP ini values for JIT compiler if: matrix.compiler == 'jit' @@ -55,7 +58,7 @@ jobs: run: echo "COMPOSER_CACHE_DIR=~\AppData\Local\Composer" >> $GITHUB_ENV - name: Cache dependencies installed with composer - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ${{ env.COMPOSER_CACHE_DIR }} key: php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }}