Skip to content

Commit 9e5f63c

Browse files
authored
update actions/cache (#2432)
1 parent de230ad commit 9e5f63c

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

.changeset/silver-items-deny.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

.github/actions/build_with_cache/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ runs:
2727
node-version: ${{ inputs.node-version }}
2828
cdk-version: ${{ inputs.cdk-version }}
2929
# cache build output based on commit sha
30-
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # version 4.0.2
30+
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # version 4.2.0
3131
id: build-cache
3232
with:
3333
path: '**/lib'

.github/actions/install_with_cache/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
exit 1;
2424
fi
2525
# cache node_modules based on package-lock.json hash
26-
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # version 4.0.2
26+
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # version 4.2.0
2727
id: npm-cache
2828
with:
2929
path: |

.github/actions/restore_build_cache/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ runs:
2828
node-version: ${{ inputs.node-version }}
2929
cdk-version: ${{ inputs.cdk-version }}
3030
# restore build output from cache
31-
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # version 4.0.2
31+
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # version 4.2.0
3232
id: build-cache
3333
with:
3434
path: '**/lib'

.github/actions/restore_install_cache/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ runs:
2424
exit 1;
2525
fi
2626
# restore node_modules from cache
27-
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # version 4.0.2
27+
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # version 4.2.0
2828
id: npm-cache
2929
with:
3030
path: |

0 commit comments

Comments
 (0)