Skip to content

Commit

Permalink
Merge pull request #5971 from psiinon/build/not-11
Browse files Browse the repository at this point in the history
No longer support Java 11
  • Loading branch information
kingthorin authored Dec 2, 2024
2 parents 0d48a78 + 310521e commit a74a763
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [11, 17, 19]
java: [17, 19]

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crowdin-upload-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 11
java-version: 17
- name: Upload Files
env:
CROWDIN_AUTH_TOKEN: ${{ secrets.ZAPBOT_CROWDIN_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prepare-release-add-on.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 11
java-version: 17
- name: Prepare Release and Create Pull Request
env:
ZAPBOT_TOKEN: ${{ secrets.ZAPBOT_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-add-on.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 11
java-version: 17
- name: Generate Release State
run: ./gradlew :addOns:generateReleaseStateLastCommit
- name: Build and Release Add-On
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ allprojects {
}

java {
val javaVersion = JavaVersion.VERSION_11
val javaVersion = JavaVersion.VERSION_17
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
}
Expand Down

0 comments on commit a74a763

Please sign in to comment.