Skip to content

Commit 4089f78

Browse files
authored
Upgrade GHA dependencies (#1635)
This fixes the following deprecation warning: > Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20 Signed-off-by: Wouter Born <[email protected]>
1 parent a9c0991 commit 4089f78

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/ci-build.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,23 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
java: [ '17' ]
22-
maven: [ '3.9.4' ]
22+
maven: [ '3.9.6' ]
2323
os: [ 'ubuntu-22.04' ]
2424
name: Build (Java ${{ matrix.java }}, ${{ matrix.os }})
2525
runs-on: ${{ matrix.os }}
2626
steps:
2727
- name: Checkout
2828
if: github.head_ref == ''
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030

3131
- name: Checkout merge
3232
if: github.head_ref != ''
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434
with:
3535
ref: refs/pull/${{github.event.pull_request.number}}/merge
3636

3737
- name: Set up Cache
38-
uses: actions/cache@v3
38+
uses: actions/cache@v4
3939
with:
4040
path: |
4141
~/.m2/repository
@@ -45,13 +45,13 @@ jobs:
4545
${{ runner.os }}-maven-
4646
4747
- name: Set up Java ${{ matrix.java }}
48-
uses: actions/setup-java@v3
48+
uses: actions/setup-java@v4
4949
with:
5050
distribution: 'temurin'
5151
java-version: ${{ matrix.java }}
5252

5353
- name: Set up Maven ${{ matrix.maven }}
54-
uses: stCarolas/setup-maven@v4.5
54+
uses: stCarolas/setup-maven@v5
5555
with:
5656
maven-version: ${{ matrix.maven }}
5757

@@ -67,7 +67,7 @@ jobs:
6767
6868
- name: Upload Build Log
6969
if: ${{ always() && ((steps.build.outcome == 'success') || (steps.build.outcome == 'failure')) }}
70-
uses: actions/upload-artifact@v3
70+
uses: actions/upload-artifact@v4
7171
with:
7272
name: build-log-java-${{ matrix.java }}-${{ matrix.os }}
7373
path: build.log

0 commit comments

Comments
 (0)