diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9d65fcd..fc6078e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.8, 3.2.1] + scala: [2.13.8, 3.2.2] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -111,12 +111,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.2.1) + - name: Download target directories (3.2.2) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.2.1-${{ matrix.java }} + name: target-${{ matrix.os }}-3.2.2-${{ matrix.java }} - - name: Inflate target directories (3.2.1) + - name: Inflate target directories (3.2.2) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 31a848e..6dd541d 100644 --- a/build.sbt +++ b/build.sbt @@ -12,7 +12,7 @@ val devs = List( inThisBuild( Seq( scalaVersion := "2.13.8", - crossScalaVersions := List(scalaVersion.value, "3.2.1"), + crossScalaVersions := List(scalaVersion.value, "3.2.2"), versionScheme := Some("semver-spec"), organization := "com.stuart", homepage := Some(url("https://github.com/StuartApp/zcaffeine")),