Skip to content

Commit be6880a

Browse files
committed
Update GH Actions dependencies
1 parent 1280824 commit be6880a

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
name: "Build JAR"
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
name: "Checkout"
20-
- uses: actions/setup-java@v3
20+
- uses: actions/setup-java@v4
2121
name: "Install Java"
2222
with:
23-
java-version: '17'
23+
java-version: '21'
2424
distribution: 'temurin'
2525
cache: 'maven'
2626
- name: "Build JAR"
@@ -51,13 +51,12 @@ jobs:
5151
downloadFilename: 'simplelocalize-cli-windows.exe'
5252
runs-on: ${{ matrix.os }}
5353
steps:
54-
- uses: actions/checkout@v3
54+
- uses: actions/checkout@v4
5555
name: "Checkout"
5656
- uses: graalvm/setup-graalvm@v1
5757
name: "Install GraalVM"
5858
with:
59-
version: '22.3.2'
60-
java-version: '17.0.7'
59+
java-version: '21'
6160
distribution: 'graalvm'
6261
components: 'native-image'
6362
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/run-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
with:
2020
fetch-depth: 0
21-
- uses: actions/setup-java@v3
21+
- uses: actions/setup-java@v4
2222
name: "Install Java"
2323
with:
24-
java-version: '17'
24+
java-version: '21'
2525
distribution: 'temurin'
2626
cache: 'maven'
2727
- name: Cache SonarCloud packages
28-
uses: actions/cache@v3
28+
uses: actions/cache@v4
2929
with:
3030
path: ~/.sonar/cache
3131
key: ${{ runner.os }}-sonar

0 commit comments

Comments
 (0)