diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 60c0b685..08201f86 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -25,7 +25,7 @@ jobs: - name: Setup Scala uses: actions/setup-java@v3 with: - java-version: 11 + java-version: 17 distribution: corretto - name: Test with Coverage / Static code analyse / Code style env: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c2af880e..100be519 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: - name: Setup Scala uses: actions/setup-java@v3 with: - java-version: 11 + java-version: 17 distribution: corretto - name: Test with Coverage / Static code analyse / Code style env: diff --git a/.github/workflows/realese.yml b/.github/workflows/realese.yml index 07bfa5de..d1daded2 100644 --- a/.github/workflows/realese.yml +++ b/.github/workflows/realese.yml @@ -21,7 +21,7 @@ jobs: - name: Setup Scala uses: actions/setup-java@v3 with: - java-version: 11 + java-version: 17 distribution: corretto - name: Test with Coverage / Static code analyse / Code style env: diff --git a/build.sbt b/build.sbt index ec194863..1cb1f104 100644 --- a/build.sbt +++ b/build.sbt @@ -48,7 +48,7 @@ lazy val root = (project in file(".")) Docker / packageName := packageName.value, Docker / version := version.value, dockerRepository := Some("gastonschabas"), - dockerBaseImage := "amazoncorretto:11-alpine-jdk", + dockerBaseImage := "amazoncorretto:17-alpine-jdk", dockerExposedPorts := Seq(playPort), dockerLabels := Map( "maintainer" -> "gastonschabas@gmail.com",