Skip to content

Commit 1757952

Browse files
committed
Upgrade all actions to latest
WE2-932 Signed-off-by: Sven Mitt <[email protected]>
1 parent d557bae commit 1757952

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/coverity-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v4
1919

20-
- uses: actions/setup-java@v3
20+
- uses: actions/setup-java@v4
2121
with:
2222
distribution: zulu
2323
java-version: 11
2424

2525
- name: Cache Maven packages
26-
uses: actions/cache@v3
26+
uses: actions/cache@v4
2727
with:
2828
path: ~/.m2
2929
key: ${{ runner.os }}-m2-v8-${{ hashFiles('**/pom.xml') }}

.github/workflows/maven-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v4
1919

20-
- uses: actions/setup-java@v3
20+
- uses: actions/setup-java@v4
2121
with:
2222
distribution: zulu
2323
java-version: 11
2424

2525
- name: Cache Maven packages
26-
uses: actions/cache@v3
26+
uses: actions/cache@v4
2727
with:
2828
path: ~/.m2
2929
key: ${{ runner.os }}-m2-v8-${{ hashFiles('**/pom.xml') }}

.github/workflows/maven-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v4
1313

14-
- uses: actions/setup-java@v3
14+
- uses: actions/setup-java@v4
1515
with:
1616
distribution: zulu
1717
java-version: 11
1818

1919
- name: Cache Maven packages
20-
uses: actions/cache@v3
20+
uses: actions/cache@v4
2121
with:
2222
path: ~/.m2
2323
key: ${{ runner.os }}-m2-v8-${{ hashFiles('**/pom.xml') }}

.github/workflows/sonarcloud-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ jobs:
2121
with:
2222
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
2323
- name: Set up JDK 17
24-
uses: actions/setup-java@v3
24+
uses: actions/setup-java@v4
2525
with:
2626
distribution: zulu
2727
java-version: 17
2828
- name: Cache SonarCloud packages
29-
uses: actions/cache@v3
29+
uses: actions/cache@v4
3030
with:
3131
path: ~/.sonar/cache
3232
key: ${{ runner.os }}-sonar
3333
restore-keys: ${{ runner.os }}-sonar
3434
- name: Cache Maven packages
35-
uses: actions/cache@v3
35+
uses: actions/cache@v4
3636
with:
3737
path: ~/.m2
3838
key: ${{ runner.os }}-m2-v11-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)