From c24d134f9cb594c09623e01c7ca638fc51e77cc4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 20:20:34 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/composer-vulns.yml | 2 +- .github/workflows/php-latte.yml | 2 +- .github/workflows/php.yml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/composer-vulns.yml b/.github/workflows/composer-vulns.yml index 671c727bf..da2b80e54 100644 --- a/.github/workflows/composer-vulns.yml +++ b/.github/workflows/composer-vulns.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: cache-db with: path: ~/.symfony/cache diff --git a/.github/workflows/php-latte.yml b/.github/workflows/php-latte.yml index 7050e5f10..b5788dca1 100644 --- a/.github/workflows/php-latte.yml +++ b/.github/workflows/php-latte.yml @@ -17,7 +17,7 @@ jobs: - name: Get PHPStan result cache directory id: phpstan-cache run: echo "dir=$(php -r "echo sys_get_temp_dir() . '/phpstan';")" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.phpstan-cache.outputs.dir }} key: phpstan-latte-templates-cache-php${{ matrix.php-version }} diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 5fb867f84..e891e4234 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -118,7 +118,7 @@ jobs: - name: Get PHP_CodeSniffer cache file pattern id: phpcs-cache run: echo "file=$(php -r "echo sys_get_temp_dir() . '/phpcs.*';")" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.phpcs-cache.outputs.file }} key: phpcs-cache-php${{ matrix.php-version }} @@ -139,7 +139,7 @@ jobs: - name: Get PHPStan result cache directory id: phpstan-cache run: echo "dir=$(php -r "echo sys_get_temp_dir() . '/phpstan';")" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.phpstan-cache.outputs.dir }} key: phpstan-cache-php${{ matrix.php-version }} @@ -160,7 +160,7 @@ jobs: - name: Get PHPStan result cache directory id: phpstan-cache run: echo "dir=$(php -r "echo sys_get_temp_dir() . '/phpstan';")" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.phpstan-cache.outputs.dir }} key: phpstan-vendor-cache-php${{ matrix.php-version }}