diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7c6406c..4f454e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.19, 2.13.14, 3.3.3] + scala: [2.12.20, 2.13.14, 3.3.3] java: [zulu@8] runs-on: ${{ matrix.os }} steps: @@ -79,12 +79,12 @@ jobs: java-version: 8 cache: sbt - - name: Download target directories (2.12.19) + - name: Download target directories (2.12.20) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-2.12.19-${{ matrix.java }} + name: target-${{ matrix.os }}-2.12.20-${{ matrix.java }} - - name: Inflate target directories (2.12.19) + - name: Inflate target directories (2.12.20) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index ca2dec8..b520134 100644 --- a/build.sbt +++ b/build.sbt @@ -6,7 +6,7 @@ name := "micrometer-pekko" ThisBuild / scalaVersion := "2.13.14" -ThisBuild / crossScalaVersions := Seq("2.12.19", "2.13.14", "3.3.3") +ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.14", "3.3.3") scalacOptions += "-target:jvm-1.8"