Skip to content

Commit c12147a

Browse files
dependabot[bot]yrodiere
authored andcommitted
Bump the workflow-actions group with 4 updates
--- updated-dependencies: - dependency-name: actions/setup-java dependency-version: 4.7.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: workflow-actions - dependency-name: actions/cache dependency-version: 4.2.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: workflow-actions - dependency-name: actions/download-artifact dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: workflow-actions - dependency-name: actions/upload-artifact dependency-version: 4.6.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: workflow-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent ac87d5a commit c12147a

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

.github/workflows/ci-report.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
persist-credentials: false
2323
ref: ${{ github.ref }}
2424
- name: Set up JDK
25-
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
25+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
2626
with:
2727
distribution: 'temurin'
2828
java-version: '21'
@@ -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@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
5656
with:
5757
pattern: build-scan-data-*
5858
github-token: ${{ github.token }}

.github/workflows/ci.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
RDBMS: ${{ matrix.rdbms }}
6565
run: ci/database-start.sh
6666
- name: Set up Java 21
67-
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
67+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
6868
with:
6969
distribution: 'temurin'
7070
java-version: '21'
@@ -81,7 +81,7 @@ jobs:
8181
echo "buildtool-cache-key=${ROOT_CACHE_KEY}-${CURRENT_MONTH}-${CURRENT_BRANCH}-${CURRENT_DAY}" >> $GITHUB_OUTPUT
8282
- name: Cache Maven/Gradle Dependency/Dist Caches
8383
id: cache-maven
84-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
84+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
8585
# if it's not a pull request, we restore and save the cache
8686
if: github.event_name != 'pull_request'
8787
with:
@@ -98,7 +98,7 @@ jobs:
9898
${{ steps.cache-key.outputs.buildtool-monthly-branch-cache-key }}-
9999
${{ steps.cache-key.outputs.buildtool-monthly-cache-key }}-
100100
- name: Restore Maven/Gradle Dependency/Dist Caches
101-
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
101+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
102102
# if it a pull request, we restore the cache but we don't save it
103103
if: github.event_name == 'pull_request'
104104
with:
@@ -126,14 +126,14 @@ jobs:
126126
# The actual publishing must be done in a separate job (see ci-report.yml).
127127
# We don't write to the remote cache as that would be unsafe.
128128
- name: Upload GitHub Actions artifact for the Develocity build scan
129-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
129+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
130130
if: "${{ github.event_name == 'pull_request' && !cancelled() }}"
131131
with:
132132
name: build-scan-data-${{ matrix.rdbms }}
133133
path: ~/.gradle/build-scan-data
134134

135135
- name: Upload test reports (if Gradle failed)
136-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
136+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
137137
if: failure()
138138
with:
139139
name: test-reports-java11-${{ matrix.rdbms }}
@@ -187,7 +187,7 @@ jobs:
187187
echo "buildtool-cache-key=${ROOT_CACHE_KEY}-${CURRENT_MONTH}-${CURRENT_BRANCH}-${CURRENT_DAY}" >> $GITHUB_OUTPUT
188188
- name: Cache Maven/Gradle Dependency/Dist Caches
189189
id: cache-maven
190-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
190+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
191191
# if it's not a pull request, we restore and save the cache
192192
if: github.event_name != 'pull_request'
193193
with:
@@ -204,7 +204,7 @@ jobs:
204204
${{ steps.cache-key.outputs.buildtool-monthly-branch-cache-key }}-
205205
${{ steps.cache-key.outputs.buildtool-monthly-cache-key }}-
206206
- name: Restore Maven/Gradle Dependency/Dist Caches
207-
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
207+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
208208
# if it a pull request, we restore the cache but we don't save it
209209
if: github.event_name == 'pull_request'
210210
with:
@@ -234,13 +234,13 @@ jobs:
234234
# We don't write to the remote cache as that would be unsafe.
235235
# That's even on push, because we do not trust Atlas runners to hold secrets: they are shared infrastructure.
236236
- name: Upload GitHub Actions artifact for the Develocity build scan
237-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
237+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
238238
if: "${{ !cancelled() }}"
239239
with:
240240
name: build-scan-data-${{ matrix.rdbms }}
241241
path: ~/.gradle/build-scan-data
242242
- name: Upload test reports (if Gradle failed)
243-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
243+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
244244
if: failure()
245245
with:
246246
name: test-reports-java11-${{ matrix.rdbms }}
@@ -262,7 +262,7 @@ jobs:
262262
- name: Reclaim disk space and sanitize user home
263263
run: .github/ci-prerequisites-atlas.sh
264264
- name: Set up Java 21
265-
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
265+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
266266
with:
267267
distribution: 'temurin'
268268
java-version: '21'
@@ -279,7 +279,7 @@ jobs:
279279
echo "buildtool-cache-key=${ROOT_CACHE_KEY}-${CURRENT_MONTH}-${CURRENT_BRANCH}-${CURRENT_DAY}" >> $GITHUB_OUTPUT
280280
- name: Cache Maven/Gradle Dependency/Dist Caches
281281
id: cache-maven
282-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
282+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
283283
# if it's not a pull request, we restore and save the cache
284284
if: github.event_name != 'pull_request'
285285
with:
@@ -296,7 +296,7 @@ jobs:
296296
${{ steps.cache-key.outputs.buildtool-monthly-branch-cache-key }}-
297297
${{ steps.cache-key.outputs.buildtool-monthly-cache-key }}-
298298
- name: Restore Maven/Gradle Dependency/Dist Caches
299-
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
299+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
300300
# if it a pull request, we restore the cache but we don't save it
301301
if: github.event_name == 'pull_request'
302302
with:
@@ -322,14 +322,14 @@ jobs:
322322
# The actual publishing must be done in a separate job (see ci-report.yml).
323323
# We don't write to the remote cache as that would be unsafe.
324324
- name: Upload GitHub Actions artifact for the Develocity build scan
325-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
325+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
326326
if: "${{ github.event_name == 'pull_request' && !cancelled() }}"
327327
with:
328328
name: build-scan-data-sca
329329
path: ~/.gradle/build-scan-data
330330

331331
- name: Upload test reports (if Gradle failed)
332-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
332+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
333333
if: failure()
334334
with:
335335
name: test-reports-java11-sca

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
steps:
3838

3939
- name: Set up JDK
40-
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
40+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
4141
with:
4242
distribution: 'temurin'
4343
java-version: '21'

0 commit comments

Comments
 (0)