diff --git a/.github/workflows/autoreview.yaml b/.github/workflows/autoreview.yaml index dffe14d1d..7df06e908 100644 --- a/.github/workflows/autoreview.yaml +++ b/.github/workflows/autoreview.yaml @@ -39,7 +39,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ steps.composer-cache.outputs.dir }} key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('composer.*') }} diff --git a/.github/workflows/cs.yaml b/.github/workflows/cs.yaml index 409292d55..9e6654b9f 100644 --- a/.github/workflows/cs.yaml +++ b/.github/workflows/cs.yaml @@ -25,7 +25,7 @@ jobs: php-version: 8.0 - name: Restore PHP-CS-Fixer cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: .php_cs.cache key: "php-cs-fixer" diff --git a/.github/workflows/e2e-tests.yaml b/.github/workflows/e2e-tests.yaml index 09a5dc72a..eba01a57c 100644 --- a/.github/workflows/e2e-tests.yaml +++ b/.github/workflows/e2e-tests.yaml @@ -57,7 +57,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ steps.composer-cache.outputs.dir }} key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ matrix.dependencies }} }} @@ -85,7 +85,7 @@ jobs: - name: Cache E2E tests dependencies if: runner.os == 'Windows' - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: tests/e2e/*/vendor key: e2e-vendor-${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('tests/e2e/*/composer.json') }} diff --git a/.github/workflows/mt-annotations.yaml b/.github/workflows/mt-annotations.yaml index dbb61fd38..1fc19c252 100644 --- a/.github/workflows/mt-annotations.yaml +++ b/.github/workflows/mt-annotations.yaml @@ -36,7 +36,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ steps.composer-cache.outputs.dir }} key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('composer.*') }} diff --git a/.github/workflows/mt.yaml b/.github/workflows/mt.yaml index cd2c5eb50..5d490141f 100644 --- a/.github/workflows/mt.yaml +++ b/.github/workflows/mt.yaml @@ -49,7 +49,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ steps.composer-cache.outputs.dir }} key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('composer.*') }} diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 75cd8da77..9f233e0e4 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -65,7 +65,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ steps.composer-cache.outputs.dir }} key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ matrix.dependencies }} }}