Skip to content

Commit 92a92bf

Browse files
authored
Update sbt-typelevel-ci-release, ... to 0.7.2 (#186)
## About this PR 📦 Updates * [org.typelevel:sbt-typelevel-ci-release](https://github.com/typelevel/sbt-typelevel) * [org.typelevel:sbt-typelevel-site](https://github.com/typelevel/sbt-typelevel) from `0.7.1` to `0.7.2` 📜 [GitHub Release Notes](https://github.com/typelevel/sbt-typelevel/releases/tag/v0.7.2) - [Version Diff](typelevel/sbt-typelevel@v0.7.1...v0.7.2) ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd like to skip this version, you can just close this PR. If you have any feedback, just mention me in the comments below. Configure Scala Steward for your repository with a [`.scala-steward.conf`](https://github.com/scala-steward-org/scala-steward/blob/e4db8c2c71cef85b91d30dd547daf6a8f8c9ab33/docs/repo-specific-configuration.md) file. _Have a fantastic day writing Scala!_ <details> <summary>⚙ Adjust future updates</summary> Add this to your `.scala-steward.conf` file to ignore future updates of this dependency: ``` updates.ignore = [ { groupId = "org.typelevel" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "org.typelevel" } }] ``` </details> <sup> labels: sbt-plugin-update, early-semver-minor, semver-spec-patch, version-scheme:early-semver, commit-count:n:2 </sup>
2 parents a3e1f6f + 8213f7c commit 92a92bf

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ jobs:
3434
runs-on: ${{ matrix.os }}
3535
timeout-minutes: 60
3636
steps:
37+
- name: Install sbt
38+
if: contains(runner.os, 'macos')
39+
run: brew install sbt
40+
3741
- name: Checkout current branch (full)
3842
uses: actions/checkout@v4
3943
with:
@@ -111,6 +115,10 @@ jobs:
111115
java: [temurin@17]
112116
runs-on: ${{ matrix.os }}
113117
steps:
118+
- name: Install sbt
119+
if: contains(runner.os, 'macos')
120+
run: brew install sbt
121+
114122
- name: Checkout current branch (full)
115123
uses: actions/checkout@v4
116124
with:
@@ -192,6 +200,10 @@ jobs:
192200
java: [temurin@17]
193201
runs-on: ${{ matrix.os }}
194202
steps:
203+
- name: Install sbt
204+
if: contains(runner.os, 'macos')
205+
run: brew install sbt
206+
195207
- name: Checkout current branch (full)
196208
uses: actions/checkout@v4
197209
with:
@@ -224,6 +236,10 @@ jobs:
224236
java: [temurin@17]
225237
runs-on: ${{ matrix.os }}
226238
steps:
239+
- name: Install sbt
240+
if: contains(runner.os, 'macos')
241+
run: brew install sbt
242+
227243
- name: Checkout current branch (full)
228244
uses: actions/checkout@v4
229245
with:

project/plugins.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
22
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.4")
33
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.11.1")
4-
addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.7.1")
4+
addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.7.2")
55
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.1")
66
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.1")
77
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
88
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.4")
9-
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.1")
9+
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.2")

0 commit comments

Comments
 (0)