Skip to content

Commit

Permalink
build(deps): bump actions/cache from 4.1.0 to 4.1.1
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 4.1.0 to 4.1.1.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v4.1.0...v4.1.1)

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Oct 14, 2024
1 parent d041c6c commit 3f8f8f7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/buildandtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
id: compute_lockfile_hash
run: echo "hash=${{ hashFiles('yarn.lock') }}" >> "$GITHUB_OUTPUT"
- name: Check dependency cache
uses: actions/[email protected].0
uses: actions/[email protected].1
id: cache_dependencies
with:
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
Expand All @@ -54,12 +54,12 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v3
- name: Check dependency cache
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
key: ${{ needs.job_install_deps.outputs.dependency_cache_key }}
- name: Check build cache
uses: actions/[email protected].0
uses: actions/[email protected].1
id: cache_built_packages
with:
path: ${{ env.CACHED_BUILD_PATHS }}
Expand Down Expand Up @@ -111,12 +111,12 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v3
- name: Check dependency cache
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
key: ${{ needs.job_build.outputs.dependency_cache_key }}
- name: Check build cache
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
path: ${{ env.CACHED_BUILD_PATHS }}
key: ${{ env.BUILD_CACHE_KEY }}
Expand Down Expand Up @@ -153,12 +153,12 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v3
- name: Check dependency cache
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
key: ${{ needs.job_build.outputs.dependency_cache_key }}
- name: Check build cache
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
path: ${{ env.CACHED_BUILD_PATHS }}
key: ${{ env.BUILD_CACHE_KEY }}
Expand All @@ -175,12 +175,12 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v3
- name: Check dependency cache
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
key: ${{ needs.job_build.outputs.dependency_cache_key }}
- name: Check build cache
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
path: ${{ env.CACHED_BUILD_PATHS }}
key: ${{ env.BUILD_CACHE_KEY }}
Expand Down

0 comments on commit 3f8f8f7

Please sign in to comment.