Skip to content

Commit 212d5b8

Browse files
Bump actions/cache from 4.2.4 to 4.3.0
Bumps [actions/cache](https://github.com/actions/cache) from 4.2.4 to 4.3.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@0400d5f...0057852) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent f4a11e7 commit 212d5b8

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/build-reusable.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
- name: Set up Node.js cache
160160
if: inputs.site-enabled
161161
id: nodejs-cache
162-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # 4.2.4
162+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # 4.3.0
163163
with:
164164
# We should be calculating the cache key using `package-lock.json` instead!
165165
# See https://stackoverflow.com/a/48524475/1278899

.github/workflows/deploy-release-reusable.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173
# Node.js cache is needed for Antora
174174
- name: Set up Node.js cache
175175
id: nodejs-cache
176-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # 4.2.4
176+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # 4.3.0
177177
with:
178178
# We should be calculating the cache key using `package-lock.json` instead!
179179
# See https://stackoverflow.com/a/48524475/1278899

.github/workflows/deploy-site-reusable.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
# Node.js cache is needed for Antora
8383
- name: Restore Node.js cache
8484
id: nodejs-cache-restore
85-
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # 4.2.4
85+
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # 4.3.0
8686
with:
8787
# The cache is OS independent
8888
enableCrossOsArchive: true
@@ -112,7 +112,7 @@ jobs:
112112
# Checking out a new branch will delete the `node_modules` folder,
113113
# so we need to save the cache here.
114114
- name: Save Node.js cache
115-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # 4.2.4
115+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # 4.3.0
116116
with:
117117
key: ${{ steps.nodejs-cache-restore.outputs.cache-primary-key }}
118118
path: node_modules

.github/workflows/verify-reproducibility-reusable.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
# preventing reproducibility results from being affected by cached outputs from other workflows.
8484
#
8585
- name: Set up Maven Cache
86-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # 4.2.4
86+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # 4.3.0
8787
with:
8888
path: ~/.m2/repository
8989
key: "${{ env.CACHE_KEY }}-${{ runner.os }}-${{ hashFiles('**/pom.xml') }}"

0 commit comments

Comments
 (0)