From b00e14f25ea04796349c57e38d2df6082cadfb14 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 8 Oct 2023 13:17:59 +0000 Subject: [PATCH 1/2] Update sbt-typelevel, ... to 0.5.4 --- core/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/build.sbt b/core/build.sbt index 1edeb3d..31da9c0 100644 --- a/core/build.sbt +++ b/core/build.sbt @@ -1,4 +1,4 @@ -val sbtTypelevelVersion = "0.5.3" // https://github.com/typelevel/sbt-typelevel/releases +val sbtTypelevelVersion = "0.5.4" // https://github.com/typelevel/sbt-typelevel/releases val sbtScoverageVersion = "2.0.9" // https://github.com/scoverage/sbt-scoverage/releases addSbtPlugin("org.typelevel" % "sbt-typelevel" % sbtTypelevelVersion) From b5668d7d5c477c15c990acd64b81813bd005383d Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 8 Oct 2023 13:19:19 +0000 Subject: [PATCH 2/2] Run prePR with sbt-typelevel Executed command: sbt tlPrePrBotHook --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 88995ed..9c3398d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -157,7 +157,7 @@ jobs: env: PGP_SECRET: ${{ secrets.PGP_SECRET }} PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} - run: echo $PGP_SECRET | base64 -di | gpg --import + run: echo $PGP_SECRET | base64 -d -i - | gpg --import - name: Import signing key and strip passphrase if: env.PGP_SECRET != '' && env.PGP_PASSPHRASE != '' @@ -165,7 +165,7 @@ jobs: PGP_SECRET: ${{ secrets.PGP_SECRET }} PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} run: | - echo "$PGP_SECRET" | base64 -di > /tmp/signing-key.gpg + echo "$PGP_SECRET" | base64 -d -i - > /tmp/signing-key.gpg echo "$PGP_PASSPHRASE" | gpg --pinentry-mode loopback --passphrase-fd 0 --import /tmp/signing-key.gpg (echo "$PGP_PASSPHRASE"; echo; echo) | gpg --command-fd 0 --pinentry-mode loopback --change-passphrase $(gpg --list-secret-keys --with-colons 2> /dev/null | grep '^sec:' | cut --delimiter ':' --fields 5 | tail -n 1)