diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c70f21ca..4e8a15515 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,6 +46,9 @@ jobs: runs-on: ${{ matrix.os }} timeout-minutes: 60 steps: + - name: Install sbt + uses: sbt/setup-sbt@v1 + - name: Checkout current branch (full) uses: actions/checkout@v4 with: @@ -111,6 +114,9 @@ jobs: java: [corretto@11] runs-on: ${{ matrix.os }} steps: + - name: Install sbt + uses: sbt/setup-sbt@v1 + - name: Checkout current branch (full) uses: actions/checkout@v4 with: @@ -225,13 +231,16 @@ 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: [corretto@11] runs-on: ${{ matrix.os }} steps: + - name: Install sbt + uses: sbt/setup-sbt@v1 + - name: Checkout current branch (full) uses: actions/checkout@v4 with: diff --git a/project/plugins.sbt b/project/plugins.sbt index 067852e0b..97f708e0c 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -4,7 +4,7 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0") addSbtPlugin("io.github.cquiroz" % "sbt-tzdb" % "4.2.0") -addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.7.1") +addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.7.4") addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")