Skip to content

Commit 2c6536d

Browse files
authored
Merge pull request #322 from ihrasko/22.x-bump-actions
22.x bump actions
2 parents 8130a00 + fbb99e3 commit 2c6536d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
SONAR_ORGANIZATION: ${{ secrets.SONAR_ORGANIZATION }}
2020
SONAR_PROJECT_KEY: ${{ secrets.SONAR_PROJECT_KEY}}
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v6
2323
- name: Set up JDK 21
24-
uses: actions/setup-java@v3
24+
uses: actions/setup-java@v5
2525
with:
2626
java-version: 21
2727
distribution: 'temurin'
@@ -30,14 +30,14 @@ jobs:
3030
with:
3131
maven-version: 3.9.8
3232
- name: Cache SonarCloud packages
33-
uses: actions/cache@v4
33+
uses: actions/cache@v5
3434
if: ${{ env.SONAR_TOKEN != 0 }}
3535
with:
3636
path: ~/.sonar/cache
3737
key: ${{ runner.os }}-sonar
3838
restore-keys: ${{ runner.os }}-sonar
3939
- name: Cache Maven packages
40-
uses: actions/cache@v4
40+
uses: actions/cache@v5
4141
with:
4242
path: ~/.m2
4343
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/publish-simulator.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828

2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6
3232
with:
3333
ref: ${{ github.event.inputs.checkout-ref != 'default' && github.event.inputs.checkout-ref || github.ref_name }}
3434

3535
- name: Set up JDK 21
36-
uses: actions/setup-java@v4
36+
uses: actions/setup-java@v5
3737
with:
3838
java-version: 21
3939
distribution: 'temurin'

0 commit comments

Comments
 (0)