diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f62e92..d328267 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: matrix: os: [ubuntu-latest] scala: [2.13.18] - java: [temurin@11] + java: [temurin@17] runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) @@ -31,12 +31,12 @@ jobs: 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 diff --git a/.mergify.yml b/.mergify.yml index 34d578b..c179d29 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -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 diff --git a/build.sbt b/build.sbt index b1864f7..a5d8e02 100644 --- a/build.sbt +++ b/build.sbt @@ -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")) ) )