diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b0fd917..0fb8132 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.3.3] + scala: [3.4.1] java: [temurin@11, temurin@17] runs-on: ${{ matrix.os }} steps: @@ -79,7 +79,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.3.3] + scala: [3.4.1] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -114,12 +114,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (3.3.3) + - name: Download target directories (3.4.1) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.3.3-${{ matrix.java }} + name: target-${{ matrix.os }}-3.4.1-${{ matrix.java }} - - name: Inflate target directories (3.3.3) + - name: Inflate target directories (3.4.1) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index c3f52f1..f245b92 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ import java.time.LocalDate ThisBuild / dynverSeparator := "-" // Default uses '+' which is not valid for docker tags -ThisBuild / scalaVersion := "3.3.3" +ThisBuild / scalaVersion := "3.4.1" addCommandAlias("codeFmt", ";headerCreate;scalafmtAll;scalafmtSbt;scalafixAll") addCommandAlias("codeVerify", ";scalafmtCheckAll;scalafmtSbtCheck;scalafixAll --check;headerCheck")