From 99ce2fc62f252c02efa60359f873f5b357f76833 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Sat, 7 Oct 2023 09:30:56 +0200 Subject: [PATCH] Update sbt-typelevel-ci-release, ... to 0.5.4 (#180) * Update sbt-typelevel-ci-release, ... to 0.5.4 * Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --------- Co-authored-by: typelevel-steward[bot] <106827141+typelevel-steward[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 4 ++-- project/plugins.sbt | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd32b06..f363d52 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -156,7 +156,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 != '' @@ -164,7 +164,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) diff --git a/project/plugins.sbt b/project/plugins.sbt index b4d30ae..5582eff 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,6 +1,6 @@ -addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.5.3") -addSbtPlugin("org.typelevel" % "sbt-typelevel-mergify" % "0.5.3") -addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.5.3") +addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.5.4") +addSbtPlugin("org.typelevel" % "sbt-typelevel-mergify" % "0.5.4") +addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.5.4") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.14.0") addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.15") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")