From 19d5504f8289bfc7455818217b7fa9aad05419f2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Jun 2024 13:27:48 +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/test-action.yaml | 2 +- action.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-action.yaml b/.github/workflows/test-action.yaml index f6450f2..9e3112b 100644 --- a/.github/workflows/test-action.yaml +++ b/.github/workflows/test-action.yaml @@ -24,7 +24,7 @@ jobs: needs: build-dev runs-on: ubuntu-latest steps: - - uses: actions/cache/restore@v3 + - uses: actions/cache/restore@v4 with: key: ${{ needs.build-dev.outputs.cache-key }} path: ./ diff --git a/action.yml b/action.yml index c679759..b187fae 100644 --- a/action.yml +++ b/action.yml @@ -79,7 +79,7 @@ runs: - id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT shell: bash - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**composer.lock') }} @@ -127,7 +127,7 @@ runs: shell: bash - if: ${{ inputs.cache-build == 'true' }} - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: ./ key: ${{ steps.cache-key.outputs.cache-key }}