Skip to content

Commit 448d331

Browse files
committed
Upgrade checkout and setup-java GH Actions (#1648)
These actions are running on Node.js 20, that goes away later this year https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/ Signed-off-by: Thomas Segismont <tsegismont@gmail.com>
1 parent 74859a7 commit 448d331

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
PROFILE_ARG: ${{ inputs.profile && format('-P {0}', inputs.profile) || '' }}
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v2
29+
uses: actions/checkout@v6
3030
with:
3131
ref: ${{ inputs.branch }}
3232
- name: Install JDK
33-
uses: actions/setup-java@v2
33+
uses: actions/setup-java@v5
3434
with:
3535
java-version: ${{ inputs.jdk }}
3636
distribution: temurin

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v6
2121
with:
2222
ref: ${{ inputs.branch }}
2323
- name: Install JDK
24-
uses: actions/setup-java@v2
24+
uses: actions/setup-java@v5
2525
with:
2626
java-version: ${{ inputs.jdk }}
2727
distribution: temurin
@@ -35,11 +35,11 @@ jobs:
3535
runs-on: ubuntu-latest
3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v2
38+
uses: actions/checkout@v6
3939
with:
4040
ref: ${{ inputs.branch }}
4141
- name: Install JDK
42-
uses: actions/setup-java@v2
42+
uses: actions/setup-java@v5
4343
with:
4444
java-version: 17
4545
distribution: temurin

0 commit comments

Comments
 (0)