Skip to content

Commit 9702d47

Browse files
authored
Upgrade GHA dependencies (openhab#460)
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 <github@maindrain.net>
1 parent 9d9b589 commit 9702d47

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci-build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,23 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
java: [ '11' ]
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,14 +67,14 @@ 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
7474

7575
- name: Upload SAT Summary Report
7676
if: ${{ always() && ((steps.build.outcome == 'success') || (steps.build.outcome == 'failure')) }}
77-
uses: actions/upload-artifact@v3
77+
uses: actions/upload-artifact@v4
7878
with:
7979
name: sat-summary-report
8080
path: target/summary_report.html

0 commit comments

Comments
 (0)