Skip to content

Commit

Permalink
use action v4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-zimerman committed Feb 11, 2025
1 parent 9cd3b9d commit 8e374e3
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 @@ -32,7 +32,7 @@ jobs:
id: compute_lockfile_hash
run: echo "hash=${{ hashFiles('yarn.lock') }}" >> "$GITHUB_OUTPUT"
- name: Check dependency cache
uses: actions/cache@v4.1.2
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # V4.2.0
id: cache_dependencies
with:
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
Expand All @@ -56,12 +56,12 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v4
- name: Check dependency cache
uses: actions/cache@v4.1.2
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # V4.2.0
with:
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
key: ${{ needs.job_install_deps.outputs.dependency_cache_key }}
- name: Check build cache
uses: actions/cache@v4.1.2
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # V4.2.0
id: cache_built_packages
with:
path: ${{ env.CACHED_BUILD_PATHS }}
Expand Down Expand Up @@ -114,12 +114,12 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v4
- name: Check dependency cache
uses: actions/cache@v4.1.2
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # V4.2.0
with:
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
key: ${{ needs.job_build.outputs.dependency_cache_key }}
- name: Check build cache
uses: actions/cache@v4.1.2
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # V4.2.0
with:
path: ${{ env.CACHED_BUILD_PATHS }}
key: ${{ env.BUILD_CACHE_KEY }}
Expand Down Expand Up @@ -157,12 +157,12 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v4
- name: Check dependency cache
uses: actions/cache@v4.1.2
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # V4.2.0
with:
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
key: ${{ needs.job_build.outputs.dependency_cache_key }}
- name: Check build cache
uses: actions/cache@v4.1.2
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # V4.2.0
with:
path: ${{ env.CACHED_BUILD_PATHS }}
key: ${{ env.BUILD_CACHE_KEY }}
Expand All @@ -180,12 +180,12 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v4
- name: Check dependency cache
uses: actions/cache@v4.1.2
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # V4.2.0
with:
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
key: ${{ needs.job_build.outputs.dependency_cache_key }}
- name: Check build cache
uses: actions/cache@v4.1.2
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # V4.2.0
with:
path: ${{ env.CACHED_BUILD_PATHS }}
key: ${{ env.BUILD_CACHE_KEY }}
Expand Down

0 comments on commit 8e374e3

Please sign in to comment.