From cd14f9f65c4876604211136cbe4c2002d094164a Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 27 Sep 2025 16:20:29 +0000 Subject: [PATCH 1/2] sbt-github-actions 0.28.0 (was 0.24.0) --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index e65c54b..c53d1e2 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") -addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.24.0") +addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.28.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.2") From 66cb12842897caf587c2666361617f7d261ebdad Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 27 Sep 2025 16:21:20 +0000 Subject: [PATCH 2/2] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/clean.yml | 3 +++ 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a81f4f..8e86894 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,13 +28,13 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 - name: Setup Java (temurin@11) if: matrix.java == 'temurin@11' - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: distribution: temurin java-version: 11 @@ -69,13 +69,13 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 - name: Setup Java (temurin@11) if: matrix.java == 'temurin@11' - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: distribution: temurin java-version: 11 @@ -85,7 +85,7 @@ jobs: uses: sbt/setup-sbt@v1 - name: Download target directories (2.12.20) - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: target-${{ matrix.os }}-2.12.20-${{ matrix.java }} diff --git a/.github/workflows/clean.yml b/.github/workflows/clean.yml index bfc865d..4bb28c8 100644 --- a/.github/workflows/clean.yml +++ b/.github/workflows/clean.yml @@ -9,6 +9,9 @@ name: Clean on: push +permissions: + actions: write + jobs: delete-artifacts: name: Delete Artifacts