diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f7c164f3..916ba0d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-20.04, ubuntu-22.04] - scala: [3.2.2, 2.13.10] + scala: [3.3.0, 2.13.10] java: [temurin@17] project: [rootNative] runs-on: ${{ matrix.os }} @@ -154,12 +154,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (3.2.2, rootNative) + - name: Download target directories (3.3.0, rootNative) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootNative + name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.0-rootNative - - name: Inflate target directories (3.2.2, rootNative) + - name: Inflate target directories (3.3.0, rootNative) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index eafc5d19..2bacc57e 100644 --- a/build.sbt +++ b/build.sbt @@ -6,7 +6,7 @@ ThisBuild / developers += tlGitHubDev("armanbilge", "Arman Bilge") ThisBuild / startYear := Some(2022) ThisBuild / tlSonatypeUseLegacyHost := false -ThisBuild / crossScalaVersions := Seq("3.2.2", "2.13.10") +ThisBuild / crossScalaVersions := Seq("3.3.0", "2.13.10") ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.temurin("17")) ThisBuild / githubWorkflowOSes := Seq("ubuntu-20.04", "ubuntu-22.04")