diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b0ae9f9d7..7d5a1f772 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -71,10 +71,10 @@ jobs: mongodb-replica-set: test-rs - name: Check that workflows are up to date - run: sbt '++ ${{ matrix.scala }}' githubWorkflowCheck + run: sbt '++ ${{ matrix.scala }}; githubWorkflowCheck' - name: Build project - run: sbt '++ ${{ matrix.scala }}' test + run: sbt '++ ${{ matrix.scala }}; test' publish: name: Publish Artifacts @@ -88,7 +88,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -136,7 +136,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -180,7 +180,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -212,4 +212,4 @@ jobs: uses: sbt/setup-sbt@v1 - name: Check Scala formatting - run: sbt scalafmtCheckAll scalafmtSbtCheck + run: sbt 'scalafmtCheckAll; scalafmtSbtCheck' diff --git a/project/plugins.sbt b/project/plugins.sbt index 1610f4d32..269e9b506 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -9,5 +9,5 @@ addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.2") addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.6.1") addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.7.0") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.6.1") -addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.30.0") +addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.31.0") addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.6")