Skip to content

Commit e813818

Browse files
chore: [DevOps] bump the github-actions group with 3 updates
Bumps the github-actions group with 3 updates: [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent c5a8b2d commit e813818

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/cache-maven-dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
GH_TOKEN: ${{ secrets.BOT_SDK_JS_FOR_DOCS_REPO_PR }}
4040

4141
- name: "Cache Dependencies"
42-
uses: actions/cache/save@v4
42+
uses: actions/cache/save@v5
4343
with:
4444
path: ${{ env.MAVEN_CACHE_DIR }}
4545
key: ${{ env.MAVEN_CACHE_KEY }}

.github/workflows/continuous-integration.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120

121121
- name: "Restore Dependencies"
122122
id: restore-dependencies
123-
uses: actions/cache/restore@v4
123+
uses: actions/cache/restore@v5
124124
with:
125125
key: ${{ env.MAVEN_CACHE_KEY }}
126126
path: ${{ env.MAVEN_CACHE_DIR }}
@@ -143,14 +143,14 @@ jobs:
143143
fi
144144
145145
- name: "Upload SDK M2"
146-
uses: actions/upload-artifact@v5
146+
uses: actions/upload-artifact@v6
147147
with:
148148
name: ${{ env.SDK_M2_NAME }}
149149
path: ${{ env.SDK_M2_PATH }}
150150
retention-days: 1
151151

152152
- name: "Upload SDK Targets"
153-
uses: actions/upload-artifact@v5
153+
uses: actions/upload-artifact@v6
154154
with:
155155
name: ${{ env.SDK_TARGETS_NAME }}
156156
path: ${{ env.SDK_TARGETS_PATH }}
@@ -174,19 +174,19 @@ jobs:
174174

175175
- name: "Restore Dependencies"
176176
id: restore-dependencies
177-
uses: actions/cache/restore@v4
177+
uses: actions/cache/restore@v5
178178
with:
179179
key: ${{ env.MAVEN_CACHE_KEY }}
180180
path: ${{ env.M2_ROOT }}
181181

182182
- name: "Restore SDK M2"
183-
uses: actions/download-artifact@v6
183+
uses: actions/download-artifact@v7
184184
with:
185185
name: ${{ env.SDK_M2_NAME }}
186186
path: ${{ env.M2_ROOT }}
187187

188188
- name: "Restore SDK Targets"
189-
uses: actions/download-artifact@v6
189+
uses: actions/download-artifact@v7
190190
with:
191191
name: ${{ env.SDK_TARGETS_NAME }}
192192

@@ -235,19 +235,19 @@ jobs:
235235

236236
- name: "Restore Dependencies"
237237
id: restore-dependencies
238-
uses: actions/cache/restore@v4
238+
uses: actions/cache/restore@v5
239239
with:
240240
key: ${{ env.MAVEN_CACHE_KEY }}
241241
path: ${{ env.M2_ROOT }}
242242

243243
- name: "Restore SDK M2"
244-
uses: actions/download-artifact@v6
244+
uses: actions/download-artifact@v7
245245
with:
246246
name: ${{ env.SDK_M2_NAME }}
247247
path: ${{ env.M2_ROOT }}
248248

249249
- name: "Restore SDK Targets"
250-
uses: actions/download-artifact@v6
250+
uses: actions/download-artifact@v7
251251
with:
252252
name: ${{ env.SDK_TARGETS_NAME }}
253253

@@ -276,7 +276,7 @@ jobs:
276276

277277
- name: "Restore Dependencies"
278278
id: restore-dependencies
279-
uses: actions/cache/restore@v4
279+
uses: actions/cache/restore@v5
280280
with:
281281
key: ${{ env.MAVEN_CACHE_KEY }}
282282
path: ${{ env.MAVEN_CACHE_DIR }}
@@ -319,13 +319,13 @@ jobs:
319319

320320
- name: "Restore Dependencies"
321321
id: restore-dependencies
322-
uses: actions/cache/restore@v4
322+
uses: actions/cache/restore@v5
323323
with:
324324
key: ${{ env.MAVEN_CACHE_KEY }}
325325
path: ${{ env.MAVEN_CACHE_DIR }}
326326

327327
- name: "Restore SDK M2"
328-
uses: actions/download-artifact@v6
328+
uses: actions/download-artifact@v7
329329
with:
330330
name: ${{ env.SDK_M2_NAME }}
331331
path: ${{ env.M2_ROOT }}

0 commit comments

Comments
 (0)