Skip to content

Commit

Permalink
Updated some toolchain versions (#64)
Browse files Browse the repository at this point in the history
Pull request: #64
  • Loading branch information
lefou committed Jan 16, 2022
1 parent a3f36cb commit 05654ee
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ jobs:
needs: build
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
runs-on: ubuntu-latest
# only run one publish job for the same sha at the same time
# e.g. when a main-branch push is also tagged
concurrency: publish-${{ github.sha }}

steps:
- uses: actions/checkout@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .mill-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.11
0.9.12
6 changes: 3 additions & 3 deletions build.sc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// mill plugins
import $ivy.`de.tototec::de.tobiasroeser.mill.vcs.version::0.1.2`
import $ivy.`de.tototec::de.tobiasroeser.mill.vcs.version::0.1.3`
// Run integration tests with mill
import $ivy.`de.tototec::de.tobiasroeser.mill.integrationtest::0.4.1-26-70d7c9`
// Generate converage reports
Expand Down Expand Up @@ -29,7 +29,7 @@ trait Deps {
def millPlatform: String
def scalaVersion: String
def millTestVersions: Seq[String]
val scoverageVersion = "1.4.10"
val scoverageVersion = "1.4.11"

val bndlib = ivy"biz.aQute.bnd:biz.aQute.bndlib:6.0.0"
val logbackClassic = ivy"ch.qos.logback:logback-classic:1.1.3"
Expand All @@ -45,7 +45,7 @@ trait Deps {
object Deps_0_10 extends Deps {
override val millVersion = "0.10.0-M4" // scala-steward:off
override def millPlatform = "0.10.0-M4"
override val scalaVersion = "2.13.7"
override val scalaVersion = "2.13.8"
// keep in sync with .github/workflows/build.yml
override val millTestVersions = Seq(millVersion)
}
Expand Down

0 comments on commit 05654ee

Please sign in to comment.