Skip to content

Commit 9bd7747

Browse files
committed
chore: update cache key in workflows
1 parent a248ff0 commit 9bd7747

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: .github/workflows/make-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
path: "./node_modules"
3636
# Use the combo between node version, name, and SHA-256 hash of the lock file as cache key so that
3737
# if one of them changes the cache is invalidated/discarded
38-
key: 18-cache-utils-node-modules-${{ hashFiles('./package-lock.json') }}
38+
key: 18-cache-utilities-node-modules-${{ hashFiles('./package-lock.json') }}
3939
- name: Build packages
4040
run: |
4141
npm run build -w packages/commons

Diff for: .github/workflows/reusable-publish-docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
uses: actions/cache@69d9d449aced6a2ede0bc19182fadc3a0a42d2b0 # v3.2.6
4343
with:
4444
path: "./node_modules"
45-
key: 18-cache-utils-node-modules-${{ hashFiles('./package-lock.json') }}
45+
key: 18-cache-utilities-node-modules-${{ hashFiles('./package-lock.json') }}
4646
- name: Install dependencies
4747
# We can skip the installation if there was a cache hit
4848
if: steps.cache-node-modules.outputs.cache-hit != 'true'

Diff for: .github/workflows/run-e2e-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
path: "./node_modules"
110110
# Use the combo between node version, name, and SHA-256 hash of the lock file as cache key so that
111111
# if one of them changes the cache is invalidated/discarded
112-
key: ${{ matrix.version }}-cache-utils-node-modules-${{ hashFiles('./package-lock.json') }}
112+
key: ${{ matrix.version }}-cache-utilities-node-modules-${{ hashFiles('./package-lock.json') }}
113113
- name: Install dependencies
114114
# We can skip the install if there was a cache hit
115115
if: steps.cache-node-modules.outputs.cache-hit != 'true'

0 commit comments

Comments
 (0)