Specify JDK 25 for GitHub Actions and Jenkins

This commit is contained in:
ncurran02
2026-05-14 09:24:55 +10:00
parent 1a1719290f
commit 33d6df3029
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
java: [ 17 ] java: [ 25 ]
fail-fast: true fail-fast: true
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
Vendored
+1 -1
View File
@@ -1,7 +1,7 @@
pipeline { pipeline {
agent any agent any
tools { tools {
jdk 'jdk-21-latest' jdk 'jdk-25-latest'
} }
stages { stages {
stage("build") { stage("build") {