From 83fa6fcb88b534d95a5d0d634448da15202e61c9 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Thu, 1 Aug 2024 19:14:09 +0200 Subject: [PATCH] Update sbt-circe-org to 0.4.2 (#438) * Update sbt-circe-org to 0.4.2 * Run prePR with sbt-typelevel Executed command: sbt tlPrePrBotHook --------- Co-authored-by: Darren Gibson --- .github/workflows/ci.yml | 12 ++++++++++++ project/plugins.sbt | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bf51aec..343cf56 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,6 +42,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: @@ -128,6 +132,10 @@ jobs: java: [temurin@11] 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: @@ -252,6 +260,10 @@ jobs: java: [temurin@11] 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: diff --git a/project/plugins.sbt b/project/plugins.sbt index c36c46c..8201929 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("io.circe" % "sbt-circe-org" % "0.4.1") +addSbtPlugin("io.circe" % "sbt-circe-org" % "0.4.2") addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.4") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.1")