Skip to content

Commit fe40aa6

Browse files
Bump actions/cache from 3 to 4 (#6)
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 1f51c96 commit fe40aa6

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/reusable-base.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
run: echo "prefix=$(( $(date +%s) / 60 / 60 / 24 / 120 ))" >> $GITHUB_OUTPUT
8686

8787
- name: Restore cache using package-lock.json hash
88-
uses: actions/cache@v3
88+
uses: actions/cache@v4
8989
if: ${{ !inputs.no-lockfile }}
9090
with:
9191
path: ${{ steps.npm-cache-dir-windows.outputs.dir || steps.npm-cache-dir.outputs.dir }}
@@ -94,7 +94,7 @@ jobs:
9494
${{ runner.os }}-node-${{ steps.npm-timed-expiration.outputs.prefix }}-
9595
9696
- name: Restore cache using package.json hash
97-
uses: actions/cache@v3
97+
uses: actions/cache@v4
9898
if: ${{ inputs.no-lockfile }}
9999
with:
100100
path: ${{ steps.npm-cache-dir-windows.outputs.dir || steps.npm-cache-dir.outputs.dir }}

.github/workflows/reusable-sync.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
run: echo "prefix=$(( $(date +%s) / 60 / 60 / 24 / 120 ))" >> $GITHUB_OUTPUT
127127

128128
- name: Restore cache using package-lock.json hash
129-
uses: actions/cache@v3
129+
uses: actions/cache@v4
130130
if: (inputs.npm-pre-sync-script || inputs.npm-post-sync-script) && !inputs.no-lockfile
131131
with:
132132
path: ${{ steps.npm-cache-dir-windows.outputs.dir || steps.npm-cache-dir.outputs.dir }}
@@ -135,7 +135,7 @@ jobs:
135135
${{ runner.os }}-node-${{ steps.npm-timed-expiration.outputs.prefix }}-
136136
137137
- name: Restore cache using package.json hash
138-
uses: actions/cache@v3
138+
uses: actions/cache@v4
139139
if: (inputs.npm-pre-sync-script || inputs.npm-post-sync-script) && inputs.no-lockfile
140140
with:
141141
path: ${{ steps.npm-cache-dir-windows.outputs.dir || steps.npm-cache-dir.outputs.dir }}

.github/workflows/type-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
run: echo "prefix=$(( $(date +%s) / 60 / 60 / 24 / 120 ))" >> $GITHUB_OUTPUT
9696

9797
- name: Restore cache using package-lock.json hash
98-
uses: actions/cache@v3
98+
uses: actions/cache@v4
9999
if: ${{ !inputs.no-lockfile }}
100100
with:
101101
path: ${{ steps.npm-cache-dir-windows.outputs.dir || steps.npm-cache-dir.outputs.dir }}
@@ -104,7 +104,7 @@ jobs:
104104
${{ runner.os }}-node-${{ steps.npm-timed-expiration.outputs.prefix }}-
105105
106106
- name: Restore cache using package.json hash
107-
uses: actions/cache@v3
107+
uses: actions/cache@v4
108108
if: ${{ inputs.no-lockfile }}
109109
with:
110110
path: ${{ steps.npm-cache-dir-windows.outputs.dir || steps.npm-cache-dir.outputs.dir }}

0 commit comments

Comments
 (0)