Skip to content

Commit 213bf9d

Browse files
author
Stefan Hahmann
committed
Use github action setup-java v4
1 parent ff4256d commit 213bf9d

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,11 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v2
1919
- name: Set up Java
20-
uses: actions/setup-java@v2
20+
uses: actions/setup-java@v4
2121
with:
2222
java-version: '8'
2323
distribution: 'zulu'
2424
cache: 'maven'
25-
cache-dependency-path: '**/pom.xml'
2625
- name: Set up CI environment
2726
run: .github/setup.sh
2827
- name: Execute the build

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,11 @@ jobs:
4040
steps:
4141
- uses: actions/checkout@v2
4242
- name: Set up JDK 17
43-
uses: actions/setup-java@v2
43+
uses: actions/setup-java@v4
4444
with:
4545
java-version: '17'
4646
distribution: 'zulu'
4747
cache: 'maven'
48-
cache-dependency-path: '**/pom.xml'
4948
- name: Jacoco Report and SonarCloud Analysis
5049
env:
5150
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information

0 commit comments

Comments
 (0)