Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,20 @@ jobs:
matrix:
os: [ubuntu-latest]
scala: [2.13.18]
java: [temurin@11]
java: [temurin@17]
runs-on: ${{ matrix.os }}
Comment thread
nafg marked this conversation as resolved.
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Java (temurin@11)
if: matrix.java == 'temurin@11'
- name: Setup Java (temurin@17)
if: matrix.java == 'temurin@17'
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
java-version: 17
cache: sbt

- name: Setup sbt
Expand Down
2 changes: 1 addition & 1 deletion .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pull_request_rules:
- author=scala-steward
- author=slick-scala-steward[bot]
- author=renovate[bot]
- check-success=Build and Test (ubuntu-latest, 2.13.18, temurin@11)
- check-success=Build and Test (ubuntu-latest, 2.13.18, temurin@17)
actions:
queue:
name: default
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inThisBuild(
scalacOptions += "-Xsource:3",
githubWorkflowPublishTargetBranches := Seq(),
githubWorkflowBuild += WorkflowStep.Sbt(List("run")),
githubWorkflowJavaVersions := Seq(JavaSpec.temurin("11"))
githubWorkflowJavaVersions := Seq(JavaSpec.temurin("17"))
)
)

Expand Down
Loading