diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0cdf8c..e171622 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -81,10 +81,10 @@ jobs: uses: sbt/setup-sbt@v1 - 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' - name: Compress target directories run: tar cf targets.tar target core/target cli/target project/target @@ -107,7 +107,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/project/plugins.sbt b/project/plugins.sbt index 6fe9bef..ff4f253 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.1") addSbtPlugin("com.github.sbt" % "sbt-header" % "5.11.0") -addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.30.0") +addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.31.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.2")