Skip to content

Commit 3d878a5

Browse files
committed
Updated GitHub Actions to use Java 25
Signed-off-by: dhoard <doug.hoard@gmail.com>
1 parent 134a89c commit 3d878a5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ubuntu-24.04
1010
steps:
1111
- uses: actions/checkout@v6
12-
- name: Set up JDK 21
12+
- name: Set up JDK
1313
uses: actions/setup-java@v5
1414
with:
15-
java-version: '21'
15+
java-version: '25'
1616
distribution: 'corretto'
1717
cache: maven
1818
- name: Build

.github/workflows/github-pages.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ jobs:
4141
- name: Set up JDK
4242
uses: actions/setup-java@v5
4343
with:
44-
java-version: 17
45-
distribution: temurin
44+
java-version: '25'
45+
distribution: 'corretto'
4646
cache: 'maven'
4747
- name: Install Hugo CLI
4848
run: |

.github/workflows/manual-build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ jobs:
55
runs-on: ubuntu-24.04
66
steps:
77
- uses: actions/checkout@v6
8-
- name: Set up JDK 21
8+
- name: Set up JDK
99
uses: actions/setup-java@v5
1010
with:
11-
java-version: '21'
11+
java-version: '25'
1212
distribution: 'corretto'
1313
cache: maven
1414
- name: Build

0 commit comments

Comments
 (0)