Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 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@0057852bfaa89a56745cba8c7296529d2fc39830 # V4.3.0
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # V5.0.1
id: cache_dependencies
with:
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
Expand All @@ -56,12 +56,12 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v5
- name: Check dependency cache
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # V4.3.0
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # V5.0.1
with:
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
key: ${{ needs.job_install_deps.outputs.dependency_cache_key }}
- name: Check build cache
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # V4.3.0
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # V5.0.1
id: cache_built_packages
with:
path: ${{ env.CACHED_BUILD_PATHS }}
Expand Down Expand Up @@ -107,12 +107,12 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v5
- name: Check dependency cache
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # V4.3.0
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # V5.0.1
with:
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
key: ${{ needs.job_build.outputs.dependency_cache_key }}
- name: Check build cache
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # V4.3.0
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # V5.0.1
with:
path: ${{ env.CACHED_BUILD_PATHS }}
key: ${{ env.BUILD_CACHE_KEY }}
Expand All @@ -130,12 +130,12 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v5
- name: Check dependency cache
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # V4.3.0
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # V5.0.1
with:
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
key: ${{ needs.job_build.outputs.dependency_cache_key }}
- name: Check build cache
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # V4.3.0
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # V5.0.1
with:
path: ${{ env.CACHED_BUILD_PATHS }}
key: ${{ env.BUILD_CACHE_KEY }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sample-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v5
- name: Check dependency cache
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # V4.3.0
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # V5.0.1
with:
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
key: ${{ inputs.dependency_cache_key }}
- name: Check build cache
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # V4.3.0
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # V5.0.1
with:
path: ${{ env.CACHED_BUILD_PATHS }}
key: ${{ env.BUILD_CACHE_KEY }}
Expand Down
Loading