From 528f2b606e10c8d0cdbdb370ef4a19b71afe6a0a Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Mon, 28 Aug 2023 00:57:42 +0200 Subject: [PATCH] Update scala3-library to 3.3.0 (#385) Co-authored-by: Zach McCoy <280974+zmccoy@users.noreply.github.com> Co-authored-by: Darren Gibson --- .github/workflows/ci.yml | 10 +++++----- build.sbt | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 26a9314e..51ab00a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,13 +29,13 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - scala: [2.12.17, 2.13.11, 3.2.2] + scala: [2.12.17, 2.13.11, 3.3.0] java: [temurin@11, temurin@17] project: [rootJVM] exclude: - scala: 2.12.17 java: temurin@17 - - scala: 3.2.2 + - scala: 3.3.0 java: temurin@17 runs-on: ${{ matrix.os }} steps: @@ -204,12 +204,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.2.2, rootJVM) + - name: Download target directories (3.3.0, rootJVM) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.0-rootJVM - - name: Inflate target directories (3.2.2, rootJVM) + - name: Inflate target directories (3.3.0, rootJVM) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 7728a4c2..cd7d027c 100644 --- a/build.sbt +++ b/build.sbt @@ -17,7 +17,7 @@ val Versions = new { val scala212 = "2.12.17" val scala213 = "2.13.11" - val scala3 = "3.2.2" + val scala3 = "3.3.0" val scalaVersions = Seq(scala212, scala213, scala3) }