Skip to content

Commit

Permalink
ci(deps): Bump actions/cache from 3.3.2 to 4.0.0
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3.3.2 to 4.0.0.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3.3.2...v4.0.0)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Jan 16, 2024
1 parent 6c47e2b commit de1bd3d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
run: echo "result=${{ runner.os }}-${{ github.run_id }}" >>$GITHUB_OUTPUT
- id: cache
name: Cache dependencies
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.0
with:
key: ${{ steps.cache-key.outputs.result }}
path: ${{ env.CACHE_PATH }}
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
node-version-file: .nvmrc
- id: cache
name: Restore dependencies cache
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.0
with:
key: ${{ needs.preflight.outputs.cache-key }}
path: ${{ env.CACHE_PATH }}
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
node-version-file: .nvmrc
- id: cache
name: Restore dependencies cache
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.0
with:
key: ${{ needs.preflight.outputs.cache-key }}
path: ${{ env.CACHE_PATH }}
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:
node-version-file: .nvmrc
- id: cache
name: Restore dependencies cache
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.0
with:
key: ${{ needs.preflight.outputs.cache-key }}
path: ${{ env.CACHE_PATH }}
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
node-version-file: .nvmrc
- id: cache
name: Restore dependencies cache
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.0
with:
key: ${{ needs.preflight.outputs.cache-key }}
path: ${{ env.CACHE_PATH }}
Expand Down Expand Up @@ -273,7 +273,7 @@ jobs:
- id: cache
if: steps.test-files-check.outputs.files_exists == 'true'
name: Restore dependencies cache
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.0
with:
key: ${{ needs.preflight.outputs.cache-key }}
path: ${{ env.CACHE_PATH }}
Expand Down Expand Up @@ -326,7 +326,7 @@ jobs:
- id: cache
if: steps.test-files-check.outputs.files_exists == 'true'
name: Restore dependencies cache
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.0
with:
key: ${{ needs.preflight.outputs.cache-key }}
path: ${{ env.CACHE_PATH }}
Expand Down Expand Up @@ -380,7 +380,7 @@ jobs:
node-version-file: .nvmrc
- id: cache
name: Restore dependencies cache
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.0
with:
key: ${{ needs.preflight.outputs.cache-key }}
path: ${{ env.CACHE_PATH }}
Expand Down Expand Up @@ -433,7 +433,7 @@ jobs:
node-version-file: .nvmrc
- id: cache
name: Restore dependencies cache
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.0
with:
key: ${{ needs.preflight.outputs.cache-key }}
path: ${{ env.CACHE_PATH }}
Expand Down Expand Up @@ -477,7 +477,7 @@ jobs:
node-version-file: .nvmrc
- id: cache
name: Restore dependencies cache
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.0
with:
key: ${{ runner.os }}-${{ github.run_id }}
path: ${{ env.CACHE_PATH }}
Expand Down

0 comments on commit de1bd3d

Please sign in to comment.