diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f15d84194..282f6ecfb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: submodules: true - uses: coursier/setup-action@v1.2.0 with: - app: sbt + apps: sbt - run: sbt +compile test: strategy: @@ -37,7 +37,7 @@ jobs: - uses: coursier/setup-action@v1.2.0 with: jvm: ${{ matrix.jvm }} - app: sbt + apps: sbt - name: Unit tests run: sbt test shell: bash diff --git a/.github/workflows/manual-release.yml b/.github/workflows/manual-release.yml index 6b798c7bf..58b2c9595 100644 --- a/.github/workflows/manual-release.yml +++ b/.github/workflows/manual-release.yml @@ -20,7 +20,7 @@ jobs: - uses: coursier/setup-action@v1.2.0 with: jvm: 'temurin:1.17.0.3' - app: sbt + apps: sbt - name: Unit tests run: sbt test shell: bash diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 223d7be57..8186f748e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: submodules: true - uses: coursier/setup-action@v1.2.0 with: - app: sbt + apps: sbt jvm: 'adopt:1.8.0-292' - run: sbt ci-release env: diff --git a/build.sbt b/build.sbt index bf09a1945..071fb697b 100644 --- a/build.sbt +++ b/build.sbt @@ -59,7 +59,7 @@ lazy val javaDebug = project "com.github.sbt" % "junit-interface" % "0.13.3" % Test ), Test / fork := true, - version := (if (isRelease) "0.34.0+11" else "0.34.0+11-SNAPSHOT") + version := (if (isRelease) "0.34.0+12" else "0.34.0+12-SNAPSHOT") ) lazy val core212 = core.jvm(Dependencies.scala212)