Skip to content

Commit 361f2b1

Browse files
Bump the workflow-actions group with 4 updates
Bumps the workflow-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-java](https://github.com/actions/setup-java), [actions/cache](https://github.com/actions/cache) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4.2.2 to 5.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@11bd719...08c6903) Updates `actions/setup-java` from 4.7.1 to 5.0.0 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@c5195ef...dded088) Updates `actions/cache` from 4.2.3 to 4.2.4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@5a3ec84...0400d5f) Updates `actions/download-artifact` from 4.3.0 to 5.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@d3f86a1...634f93c) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: workflow-actions - dependency-name: actions/setup-java dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: workflow-actions - dependency-name: actions/cache dependency-version: 4.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: workflow-actions - dependency-name: actions/download-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: workflow-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 446664e commit 361f2b1

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/ci-report.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,21 +49,21 @@ jobs:
4949
fi
5050
# Checkout target branch which has trusted code
5151
- name: Check out target branch
52-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
52+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # 5.0.0
5353
with:
5454
persist-credentials: false
5555
# By default, a workflow that is triggered with on workflow_run would run on the main (default) branch.
5656
# Different branches might have different versions of Develocity, and we want to make sure
5757
# that we publish with the one that we built the scan with in the first place.
5858
ref: ${{ steps.determine_branch_ref.outputs.original_branch_ref }}
5959
- name: Set up Java 21
60-
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # 4.7.1
60+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # 5.0.0
6161
with:
6262
java-version: 21
6363
distribution: temurin
6464
# https://github.com/actions/cache/blob/main/examples.md#java---maven
6565
- name: Cache local Maven repository
66-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # 4.2.3
66+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # 4.2.4
6767
with:
6868
path: ~/.m2/repository
6969
# use a different key than workflows running untrusted code
@@ -74,7 +74,7 @@ jobs:
7474
run: ./mvnw -v
7575
- name: Download GitHub Actions artifacts for the Develocity build scans
7676
id: downloadBuildScan
77-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # 4.3.0
77+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # 5.0.0
7878
with:
7979
pattern: build-scan-data-*
8080
github-token: ${{ github.token }}

.github/workflows/ci-tck-report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ jobs:
3434
java-version: [ '17', '21' ]
3535

3636
steps:
37-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
37+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # 5.0.0
3838
with:
3939
persist-credentials: false
4040

4141
- name: Set up Java ${{ matrix.java-version }}
42-
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # 4.7.1
42+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # 5.0.0
4343
with:
4444
java-version: ${{ matrix.java-version }}
4545
distribution: temurin

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,17 +86,17 @@ jobs:
8686
- name: Support longpaths on Windows
8787
if: "startsWith(matrix.os.runs-on, 'windows')"
8888
run: git config --global core.longpaths true
89-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
89+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # 5.0.0
9090
with:
9191
persist-credentials: false
9292
- name: Set up Java ${{ matrix.os.java.version }}
93-
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # 4.7.1
93+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # 5.0.0
9494
with:
9595
java-version: ${{ matrix.os.java.version }}
9696
distribution: temurin
9797
# https://github.com/actions/cache/blob/main/examples.md#java---maven
9898
- name: Cache local Maven repository
99-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # 4.2.3
99+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # 4.2.4
100100
with:
101101
path: ~/.m2/repository
102102
# use a different key than workflows running in trusted mode

0 commit comments

Comments
 (0)