diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3e3b27..99ef04a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.13, 2.13.5, 3.0.2] + scala: [2.12.14, 2.13.5, 3.0.2] java: [adopt@1.8] runs-on: ${{ matrix.os }} steps: @@ -99,12 +99,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.12.13) + - name: Download target directories (2.12.14) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.12.13-${{ matrix.java }} + name: target-${{ matrix.os }}-2.12.14-${{ matrix.java }} - - name: Inflate target directories (2.12.13) + - name: Inflate target directories (2.12.14) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index c1bb5f0..d07bead 100644 --- a/build.sbt +++ b/build.sbt @@ -13,7 +13,7 @@ ThisBuild / organizationName := "Scodec" ThisBuild / homepage := Some(url("https://github.com/scodec/scodec-stream")) ThisBuild / startYear := Some(2013) -ThisBuild / crossScalaVersions := Seq("2.12.13", "2.13.5", "3.0.2") +ThisBuild / crossScalaVersions := Seq("2.12.14", "2.13.5", "3.0.2") ThisBuild / strictSemVer := false