Skip to content

Commit

Permalink
Merge pull request #81 from scala-steward/update/sbt-typelevel-0.7.4
Browse files Browse the repository at this point in the history
Update sbt-typelevel, ... to 0.7.4
  • Loading branch information
satabin authored Oct 14, 2024
2 parents 5c92dd9 + 4bbd1a5 commit 000577c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ jobs:
timeout-minutes: 60
steps:
- name: Install sbt
if: contains(runner.os, 'macos')
run: brew install sbt
uses: sbt/setup-sbt@v1

- name: Checkout current branch (full)
uses: actions/checkout@v4
Expand All @@ -56,10 +55,15 @@ jobs:
if: matrix.java == 'temurin@8' && steps.setup-java-temurin-8.outputs.cache-hit == 'false'
run: sbt +update

- name: Install Python 3.10
uses: actions/setup-python@v5
with:
python-version: 3.10.15

- name: Install localstack
env:
SERVICES: sqs
uses: LocalStack/setup-localstack@main
uses: LocalStack/setup-localstack@v0.2.3
with:
image-tag: latest

Expand Down Expand Up @@ -119,8 +123,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Install sbt
if: contains(runner.os, 'macos')
run: brew install sbt
uses: sbt/setup-sbt@v1

- name: Checkout current branch (full)
uses: actions/checkout@v4
Expand Down Expand Up @@ -193,8 +196,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Install sbt
if: contains(runner.os, 'macos')
run: brew install sbt
uses: sbt/setup-sbt@v1

- name: Checkout current branch (full)
uses: actions/checkout@v4
Expand Down
6 changes: 5 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,11 @@ lazy val testkit = crossProject(JVMPlatform)
// for sqs integration test, start a localstack with sqs
ThisBuild / githubWorkflowBuildPreamble := List(
WorkflowStep.Use(
UseRef.Public(owner = "LocalStack", repo = "setup-localstack", ref = "main"),
UseRef.Public(owner = "actions", repo = "setup-python", ref = "v5"),
name = Some("Install Python 3.10"),
params = Map("python-version" -> "3.10.15")),
WorkflowStep.Use(
UseRef.Public(owner = "LocalStack", repo = "setup-localstack", ref = "v0.2.3"),
name = Some("Install localstack"),
params = Map("image-tag" -> "latest"),
env = Map("SERVICES" -> "sqs")
Expand Down
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.3")
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.3")
addSbtPlugin("org.typelevel" % "sbt-typelevel-scalafix" % "0.7.3")
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.4")
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.4")
addSbtPlugin("org.typelevel" % "sbt-typelevel-scalafix" % "0.7.4")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.6.1")

0 comments on commit 000577c

Please sign in to comment.