Skip to content

Commit e700ef7

Browse files
HDDS-15057. Bump actions/cache to 5.0.4 (#10087)
1 parent c183f27 commit e700ef7

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/build-ratis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
repository: ${{ inputs.repo }}
7171
ref: ${{ inputs.ref }}
7272
- name: Cache for maven dependencies
73-
uses: actions/cache@v5
73+
uses: actions/cache@v5.0.4
7474
with:
7575
path: |
7676
~/.m2/repository

.github/workflows/check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ jobs:
164164
165165
- name: Cache for NPM dependencies
166166
if: ${{ inputs.needs-npm-cache }}
167-
uses: actions/cache@v5
167+
uses: actions/cache@v5.0.4
168168
with:
169169
path: |
170170
~/.pnpm-store
@@ -174,7 +174,7 @@ jobs:
174174
175175
- name: Cache for Maven dependencies
176176
if: ${{ inputs.needs-maven-cache }}
177-
uses: actions/cache/restore@v5
177+
uses: actions/cache/restore@v5.0.4
178178
with:
179179
path: |
180180
~/.m2/repository/*/*/*

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ jobs:
338338
fetch-depth: 0
339339
ref: ${{ needs.build-info.outputs.sha }}
340340
- name: Cache for maven dependencies
341-
uses: actions/cache/restore@v5
341+
uses: actions/cache/restore@v5.0.4
342342
with:
343343
path: |
344344
~/.m2/repository/*/*/*

.github/workflows/intermittent-test-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
with:
110110
ref: ${{ github.event.inputs.ref }}
111111
- name: Cache for maven dependencies
112-
uses: actions/cache/restore@v5
112+
uses: actions/cache/restore@v5.0.4
113113
with:
114114
path: |
115115
~/.m2/repository/*/*/*
@@ -167,7 +167,7 @@ jobs:
167167
with:
168168
ref: ${{ github.event.inputs.ref }}
169169
- name: Cache for maven dependencies
170-
uses: actions/cache/restore@v5
170+
uses: actions/cache/restore@v5.0.4
171171
with:
172172
path: |
173173
~/.m2/repository/*/*/*

.github/workflows/populate-cache.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Restore cache for Maven dependencies
4040
id: restore-cache
41-
uses: actions/cache/restore@v5
41+
uses: actions/cache/restore@v5.0.4
4242
with:
4343
path: |
4444
~/.m2/repository/*/*/*
@@ -60,7 +60,7 @@ jobs:
6060
- name: Restore NodeJS tarballs
6161
id: restore-nodejs
6262
if: steps.restore-cache.outputs.cache-hit != 'true'
63-
uses: actions/cache@v5
63+
uses: actions/cache@v5.0.4
6464
with:
6565
path: ~/.m2/repository/com/github/eirslett/node
6666
key: nodejs-${{ steps.nodejs-version.outputs.nodejs-version }}
@@ -85,7 +85,7 @@ jobs:
8585

8686
- name: Save cache for Maven dependencies
8787
if: steps.restore-cache.outputs.cache-hit != 'true'
88-
uses: actions/cache/save@v5
88+
uses: actions/cache/save@v5.0.4
8989
with:
9090
path: |
9191
~/.m2/repository/*/*/*

.github/workflows/repeat-acceptance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
with:
8686
ref: ${{ github.event.inputs.ref }}
8787
- name: Cache for npm dependencies
88-
uses: actions/cache@v5
88+
uses: actions/cache@v5.0.4
8989
with:
9090
path: |
9191
~/.pnpm-store
@@ -94,7 +94,7 @@ jobs:
9494
restore-keys: |
9595
${{ runner.os }}-pnpm-
9696
- name: Cache for maven dependencies
97-
uses: actions/cache/restore@v5
97+
uses: actions/cache/restore@v5.0.4
9898
with:
9999
path: |
100100
~/.m2/repository/*/*/*

0 commit comments

Comments
 (0)