Skip to content

Commit c653a5d

Browse files
authored
Merge pull request #3315 from typelevel/update/sbt-typelevel-0.5.4
Update sbt-typelevel, sbt-typelevel-site to 0.5.4
2 parents cebd298 + 6e8d850 commit c653a5d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,15 +226,15 @@ jobs:
226226
env:
227227
PGP_SECRET: ${{ secrets.PGP_SECRET }}
228228
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
229-
run: echo $PGP_SECRET | base64 -di | gpg --import
229+
run: echo $PGP_SECRET | base64 -d -i - | gpg --import
230230

231231
- name: Import signing key and strip passphrase
232232
if: env.PGP_SECRET != '' && env.PGP_PASSPHRASE != ''
233233
env:
234234
PGP_SECRET: ${{ secrets.PGP_SECRET }}
235235
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
236236
run: |
237-
echo "$PGP_SECRET" | base64 -di > /tmp/signing-key.gpg
237+
echo "$PGP_SECRET" | base64 -d -i - > /tmp/signing-key.gpg
238238
echo "$PGP_PASSPHRASE" | gpg --pinentry-mode loopback --passphrase-fd 0 --import /tmp/signing-key.gpg
239239
(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)
240240

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
val sbtTypelevelVersion = "0.5.3"
1+
val sbtTypelevelVersion = "0.5.4"
22
addSbtPlugin("org.typelevel" % "sbt-typelevel" % sbtTypelevelVersion)
33
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % sbtTypelevelVersion)
44
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.14.0")

0 commit comments

Comments
 (0)