Skip to content

Commit

Permalink
chore(ci): update JDK version from 22 to 23 in CI workflows (#375)
Browse files Browse the repository at this point in the history
* chore(ci): update JDK version from 22 to 23 in CI workflows

* chore(ci): update JDK version from 22 to 23 in reports workflow
  • Loading branch information
cheleb authored Dec 23, 2024
1 parent 1a48579 commit a760c5c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
uses: actions/checkout@v4
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v2
- name: Set up JDK 22
- name: Set up JDK 23
uses: actions/setup-java@v4
with:
java-version: "22"
java-version: "23"
distribution: "zulu"
cache: sbt
- name: Install sbt
Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,14 @@ jobs:
- uses: actions/checkout@v4
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v2
- name: Set up JDK 22
- name: Set up JDK 23
uses: actions/setup-java@v4
with:
java-version: '22'
java-version: '23'
distribution: 'zulu'
cache: sbt
- name: Install sbt
uses: sbt/setup-sbt@v1
- name: Run tests crosscompile
run: sbt ++ test
publish:
Expand All @@ -42,10 +44,10 @@ jobs:
fetch-depth: 0
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v2
- name: Set up JDK 21
- name: Set up JDK 23
uses: actions/setup-java@v4
with:
java-version: '21'
java-version: '23'
distribution: 'zulu'
cache: sbt
- name: Setup sbt
Expand All @@ -67,10 +69,10 @@ jobs:
with:
node-version: 16.x
# cache: yarn
- name: Set up JDK 22
- name: Set up JDK 23
uses: actions/setup-java@v4
with:
java-version: '22'
java-version: '23'
distribution: 'zulu'
cache: sbt
- name: Install sbt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 22
- name: Set up JDK 23
uses: actions/setup-java@v4
with:
java-version: "22"
java-version: "23"
distribution: "zulu"
cache: sbt
- name: Install sbt
Expand Down

0 comments on commit a760c5c

Please sign in to comment.