Skip to content

Commit e23a9c8

Browse files
Bump the workflow-actions group with 3 updates
Bumps the workflow-actions group with 3 updates: [actions/cache](https://github.com/actions/cache), [actions/download-artifact](https://github.com/actions/download-artifact) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/cache` from 4.2.0 to 4.2.2 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@1bd1e32...d4323d4) Updates `actions/download-artifact` from 4.1.8 to 4.1.9 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@fa0a91b...cc20338) Updates `actions/upload-artifact` from 4.6.0 to 4.6.1 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@65c4c4a...4cec3d8) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch dependency-group: workflow-actions - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: workflow-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: workflow-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent da2de1e commit e23a9c8

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/ci-report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
echo "buildtool-monthly-branch-cache-key=${ROOT_CACHE_KEY}-${CURRENT_MONTH}-${CURRENT_BRANCH}" >> $GITHUB_OUTPUT
3939
echo "buildtool-cache-key=${ROOT_CACHE_KEY}-${CURRENT_MONTH}-${CURRENT_BRANCH}-${CURRENT_DAY}" >> $GITHUB_OUTPUT
4040
- name: Restore Maven/Gradle Dependency/Dist Caches
41-
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
41+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
4242
with:
4343
path: |
4444
~/.m2/repository/
@@ -52,7 +52,7 @@ jobs:
5252
5353
- name: Download GitHub Actions artifacts for the Develocity build scans
5454
id: downloadBuildScan
55-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
55+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
5656
with:
5757
pattern: build-scan-data-*
5858
github-token: ${{ github.token }}

.github/workflows/ci.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
echo "buildtool-cache-key=${ROOT_CACHE_KEY}-${CURRENT_MONTH}-${CURRENT_BRANCH}-${CURRENT_DAY}" >> $GITHUB_OUTPUT
7474
- name: Cache Maven/Gradle Dependency/Dist Caches
7575
id: cache-maven
76-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
76+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
7777
# if it's not a pull request, we restore and save the cache
7878
if: github.event_name != 'pull_request'
7979
with:
@@ -90,7 +90,7 @@ jobs:
9090
${{ steps.cache-key.outputs.buildtool-monthly-branch-cache-key }}-
9191
${{ steps.cache-key.outputs.buildtool-monthly-cache-key }}-
9292
- name: Restore Maven/Gradle Dependency/Dist Caches
93-
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
93+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
9494
# if it a pull request, we restore the cache but we don't save it
9595
if: github.event_name == 'pull_request'
9696
with:
@@ -118,14 +118,14 @@ jobs:
118118
# The actual publishing must be done in a separate job (see ci-report.yml).
119119
# We don't write to the remote cache as that would be unsafe.
120120
- name: Upload GitHub Actions artifact for the Develocity build scan
121-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
121+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
122122
if: "${{ github.event_name == 'pull_request' && !cancelled() }}"
123123
with:
124124
name: build-scan-data-${{ matrix.rdbms }}
125125
path: ~/.gradle/build-scan-data
126126

127127
- name: Upload test reports (if Gradle failed)
128-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
128+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
129129
if: failure()
130130
with:
131131
name: test-reports-java11-${{ matrix.rdbms }}
@@ -179,7 +179,7 @@ jobs:
179179
echo "buildtool-cache-key=${ROOT_CACHE_KEY}-${CURRENT_MONTH}-${CURRENT_BRANCH}-${CURRENT_DAY}" >> $GITHUB_OUTPUT
180180
- name: Cache Maven/Gradle Dependency/Dist Caches
181181
id: cache-maven
182-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
182+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
183183
# if it's not a pull request, we restore and save the cache
184184
if: github.event_name != 'pull_request'
185185
with:
@@ -196,7 +196,7 @@ jobs:
196196
${{ steps.cache-key.outputs.buildtool-monthly-branch-cache-key }}-
197197
${{ steps.cache-key.outputs.buildtool-monthly-cache-key }}-
198198
- name: Restore Maven/Gradle Dependency/Dist Caches
199-
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
199+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
200200
# if it a pull request, we restore the cache but we don't save it
201201
if: github.event_name == 'pull_request'
202202
with:
@@ -226,13 +226,13 @@ jobs:
226226
# We don't write to the remote cache as that would be unsafe.
227227
# That's even on push, because we do not trust Atlas runners to hold secrets: they are shared infrastructure.
228228
- name: Upload GitHub Actions artifact for the Develocity build scan
229-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
229+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
230230
if: "${{ !cancelled() }}"
231231
with:
232232
name: build-scan-data-${{ matrix.rdbms }}
233233
path: ~/.gradle/build-scan-data
234234
- name: Upload test reports (if Gradle failed)
235-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
235+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
236236
if: failure()
237237
with:
238238
name: test-reports-java11-${{ matrix.rdbms }}
@@ -271,7 +271,7 @@ jobs:
271271
echo "buildtool-cache-key=${ROOT_CACHE_KEY}-${CURRENT_MONTH}-${CURRENT_BRANCH}-${CURRENT_DAY}" >> $GITHUB_OUTPUT
272272
- name: Cache Maven/Gradle Dependency/Dist Caches
273273
id: cache-maven
274-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
274+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
275275
# if it's not a pull request, we restore and save the cache
276276
if: github.event_name != 'pull_request'
277277
with:
@@ -288,7 +288,7 @@ jobs:
288288
${{ steps.cache-key.outputs.buildtool-monthly-branch-cache-key }}-
289289
${{ steps.cache-key.outputs.buildtool-monthly-cache-key }}-
290290
- name: Restore Maven/Gradle Dependency/Dist Caches
291-
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
291+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
292292
# if it a pull request, we restore the cache but we don't save it
293293
if: github.event_name == 'pull_request'
294294
with:
@@ -314,14 +314,14 @@ jobs:
314314
# The actual publishing must be done in a separate job (see ci-report.yml).
315315
# We don't write to the remote cache as that would be unsafe.
316316
- name: Upload GitHub Actions artifact for the Develocity build scan
317-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
317+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
318318
if: "${{ github.event_name == 'pull_request' && !cancelled() }}"
319319
with:
320320
name: build-scan-data-sca
321321
path: ~/.gradle/build-scan-data
322322

323323
- name: Upload test reports (if Gradle failed)
324-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
324+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
325325
if: failure()
326326
with:
327327
name: test-reports-java11-sca

0 commit comments

Comments
 (0)