From 00691cbfdffb337c780efd8ecc0e1422c7064e3b Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 11 Jul 2026 01:04:23 +0000 Subject: [PATCH 1/2] Update sbt-mergify-github-actions to 0.9.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index bbe4e1e..60ddc7c 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1 +1 @@ -addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.9.0") +addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.9.1") From 098ca460fd35565bde993dfc158eb1768fb4bc7e Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 11 Jul 2026 01:04:41 +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 d328267..a9ae5ad 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@v7 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 @@ -43,9 +43,9 @@ jobs: uses: sbt/setup-sbt@v1 - name: Check that workflows are up to date - run: sbt '++ ${{ matrix.scala }}' githubWorkflowCheck + run: sbt '++ ${{ matrix.scala }}; githubWorkflowCheck' - name: Build project - run: sbt '++ ${{ matrix.scala }}' test + run: sbt '++ ${{ matrix.scala }}; test' - - run: sbt '++ ${{ matrix.scala }}' run + - run: sbt '++ ${{ matrix.scala }}; run' 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