We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 138bfa1 commit d77cb01Copy full SHA for d77cb01
.github/workflows/build.yml
@@ -40,17 +40,17 @@ jobs:
40
matrix:
41
java: [ 17, 21 ]
42
steps:
43
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
44
- name: Install JDK ${{ matrix.java }}
45
- uses: actions/setup-java@v3
+ uses: actions/setup-java@v4
46
with:
47
distribution: temurin
48
java-version: ${{ matrix.java }}
49
cache: maven
50
- name: Build with Maven
51
run: mvn -B clean install
52
- name: Upload build reports (if build failed)
53
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
54
if: ${{ failure() || cancelled() }}
55
56
name: "build-reports-Build - JDK ${{ matrix.java }}"
0 commit comments