From 7bd22477f1e65261d52919ea3717f43eb73f74ee Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 19 Oct 2023 00:10:33 +0000 Subject: [PATCH 1/2] Update sbt-typelevel, sbt-typelevel-site to 0.6.0 --- project/plugins.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 7cd630315..539fc99ba 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ -addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.6.0-M1") -addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.6.0-M1") +addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.6.0") +addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.6.0") addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.6") From 2facf6a716f17412b4aa286cb9535a39e5edb6ef Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 19 Oct 2023 00:16:41 +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 6ac699a7e..309d59333 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -216,7 +216,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 != '' @@ -224,7 +224,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)