From b4bb02cc8c9faf6d0d76ab87b6d629a01cc7dd76 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 11 Sep 2025 17:26:55 +0000 Subject: [PATCH 1/2] Update sbt-github-actions to 0.28.0 --- project/GitHubActions.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/GitHubActions.sbt b/project/GitHubActions.sbt index 41faab85..bc75e790 100644 --- a/project/GitHubActions.sbt +++ b/project/GitHubActions.sbt @@ -20,4 +20,4 @@ //====================================================================================================================== // SBT file to include support for the GitHub Actions plugin. //====================================================================================================================== -addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.25.0") \ No newline at end of file +addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.28.0") \ No newline at end of file From 74ccb02317db8cdd942044c3bfac21cc206b4f35 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 11 Sep 2025 17:27:17 +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 da96d666..c9f9a56c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,13 +27,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@17) if: matrix.java == 'temurin@17' - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: distribution: temurin java-version: 17 @@ -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@17) if: matrix.java == 'temurin@17' - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: distribution: temurin java-version: 17 @@ -85,7 +85,7 @@ jobs: uses: sbt/setup-sbt@v1 - name: Download target directories (3.3.6) - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: target-${{ matrix.os }}-3.3.6-${{ matrix.java }} diff --git a/.github/workflows/clean.yml b/.github/workflows/clean.yml index bfc865d5..4bb28c89 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