From a93d5f149815afd6d7b59cf62d981e35938c4b18 Mon Sep 17 00:00:00 2001 From: "dwolla-oss-scala-steward[bot]" <212073+dwolla-oss-scala-steward[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 12:08:58 +0000 Subject: [PATCH 1/2] Update sbt-typelevel-ci-release, ... to 0.7.3 --- project/plugins.sbt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 2a0fcbe..1459854 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.7.1") -addSbtPlugin("org.typelevel" % "sbt-typelevel-mergify" % "0.7.1") -addSbtPlugin("org.typelevel" % "sbt-typelevel-settings" % "0.7.1") +addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.7.3") +addSbtPlugin("org.typelevel" % "sbt-typelevel-mergify" % "0.7.3") +addSbtPlugin("org.typelevel" % "sbt-typelevel-settings" % "0.7.3") addSbtPlugin("com.github.cb372" % "sbt-explicit-dependencies" % "0.3.1") From 075b8bac8f2c21b9a01734f37c3dc74c526548d4 Mon Sep 17 00:00:00 2001 From: "dwolla-oss-scala-steward[bot]" <212073+dwolla-oss-scala-steward[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 12:09:24 +0000 Subject: [PATCH 2/2] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 118616a..20de333 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,6 +33,10 @@ jobs: runs-on: ${{ matrix.os }} timeout-minutes: 60 steps: + - name: Install sbt + if: contains(runner.os, 'macos') + run: brew install sbt + - name: Checkout current branch (full) uses: actions/checkout@v4 with: @@ -81,6 +85,10 @@ jobs: java: [temurin@17] runs-on: ${{ matrix.os }} steps: + - name: Install sbt + if: contains(runner.os, 'macos') + run: brew install sbt + - name: Checkout current branch (full) uses: actions/checkout@v4 with: @@ -145,13 +153,17 @@ jobs: dependency-submission: name: Submit Dependencies - if: github.event_name != 'pull_request' + if: github.event.repository.fork == false && github.event_name != 'pull_request' strategy: matrix: os: [ubuntu-latest] java: [temurin@17] runs-on: ${{ matrix.os }} steps: + - name: Install sbt + if: contains(runner.os, 'macos') + run: brew install sbt + - name: Checkout current branch (full) uses: actions/checkout@v4 with: