diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 97dc0b1..9737349 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -59,7 +59,7 @@ jobs: run: tar cf targets.tar target project/target - name: Upload target directories - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: target-${{ matrix.os }}-${{ matrix.scala }}-${{ matrix.java }} path: targets.tar @@ -76,7 +76,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -92,7 +92,7 @@ jobs: uses: sbt/setup-sbt@v1 - name: Download target directories (2.12.20) - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: target-${{ matrix.os }}-2.12.20-${{ matrix.java }} @@ -102,7 +102,7 @@ jobs: rm targets.tar - name: Download target directories (2.13.18) - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: target-${{ matrix.os }}-2.13.18-${{ matrix.java }} @@ -112,7 +112,7 @@ jobs: rm targets.tar - name: Download target directories (3.7.4) - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: target-${{ matrix.os }}-3.7.4-${{ matrix.java }} diff --git a/project/plugins.sbt b/project/plugins.sbt index d318d6f..ce9f3ff 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -4,6 +4,6 @@ addSbtPlugin("com.github.sbt" % "sbt-site" % "1.6.0") addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.3") addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.0") addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.15") -addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.28.0") +addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.29.0") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.5") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")