Skip to content

Commit 73618f9

Browse files
committed
Update GitHub workflows to use latest action versions and JDK 24
Upgraded `actions/checkout` and `actions/upload-artifact` to v4, and `actions/setup-java` to v4 with JDK 24. Adjusted macOS and build workflows accordingly.
1 parent 39a0158 commit 73618f9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
- uses: actions/checkout@v2
1313
with:
1414
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
15-
- name: Set up JDK 17
16-
uses: actions/setup-java@v1
15+
- name: Set up JDK 24
16+
uses: actions/setup-java@v4
1717
with:
18-
java-version: 17
18+
java-version: 24
1919
# - name: Cache Maven packages
2020
# uses: actions/cache@v1
2121
# with:

.github/workflows/macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
build:
55
runs-on: macos-latest
66
steps:
7-
- uses: actions/checkout@v2
7+
- uses: actions/checkout@v4
88

99
- name: Setup Gluon's GraalVM
1010
uses: gluonhq/setup-graalvm@master
@@ -72,7 +72,7 @@ jobs:
7272
echo ::set-output name=path::target/gluonfx/x86_64-darwin/HelloGluon-1.0.0.pkg
7373
7474
- name: Upload (pkg store)
75-
uses: actions/upload-artifact@v2
75+
uses: actions/upload-artifact@v4
7676
with:
7777
name: PackageAppStore
7878
path: ${{ steps.outputfilestore.outputs.path }}

0 commit comments

Comments
 (0)