From 61a04d233682f8de61be1224a5f9506dfe5548b8 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 27 Nov 2025 00:35:09 +0000 Subject: [PATCH 1/2] Update sbt-github-actions to 0.29.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index f76c422..754b4a2 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.28.0") +addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.29.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.2") From 0dff58c21c00ede010c64c6d656f8f645452fb4a Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 27 Nov 2025 00:35:40 +0000 Subject: [PATCH 2/2] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 34aee40..6891844 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 @@ -53,7 +53,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 @@ -70,7 +70,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -86,7 +86,7 @@ jobs: uses: sbt/setup-sbt@v1 - name: Download target directories (2.11.12) - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: target-${{ matrix.os }}-2.11.12-${{ matrix.java }} @@ -96,7 +96,7 @@ jobs: rm targets.tar - 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 }} @@ -106,7 +106,7 @@ jobs: rm targets.tar - name: Download target directories (2.13.17) - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: target-${{ matrix.os }}-2.13.17-${{ matrix.java }} @@ -116,7 +116,7 @@ jobs: rm targets.tar - name: Download target directories (3.3.7) - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: target-${{ matrix.os }}-3.3.7-${{ matrix.java }}