From 77b818dda02ea2b2b1e6ebbf4ac3884a6011f98e Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 28 Nov 2025 16:01:27 +0000 Subject: [PATCH 1/2] Update sbt-github-actions to 0.29.0 --- project/GitHubActions.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/GitHubActions.sbt b/project/GitHubActions.sbt index 41faab85..c79b082a 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.29.0") \ No newline at end of file From e96303175bc3f39deff2c3adb29860e8b91426d8 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 28 Nov 2025 16:01:53 +0000 Subject: [PATCH 2/2] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 12 ++++++------ .github/workflows/clean.yml | 3 +++ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da96d666..cd085069 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@v6 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 @@ -52,7 +52,7 @@ jobs: run: tar cf targets.tar target facsimile-util/target facsimile-collection/target facsimile-simulation/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 @@ -69,13 +69,13 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) - uses: actions/checkout@v4 + uses: actions/checkout@v6 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@v6 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