Skip to content

Commit cf7a5e4

Browse files
authored
Merge pull request #111 from typelevel/update/sbt-typelevel-0.5.4
Update sbt-typelevel, ... to 0.5.4
2 parents 58b6783 + 0617c3b commit cf7a5e4

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
@@ -186,15 +186,15 @@ jobs:
186186
env:
187187
PGP_SECRET: ${{ secrets.PGP_SECRET }}
188188
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
189-
run: echo $PGP_SECRET | base64 -di | gpg --import
189+
run: echo $PGP_SECRET | base64 -d -i - | gpg --import
190190

191191
- name: Import signing key and strip passphrase
192192
if: env.PGP_SECRET != '' && env.PGP_PASSPHRASE != ''
193193
env:
194194
PGP_SECRET: ${{ secrets.PGP_SECRET }}
195195
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
196196
run: |
197-
echo "$PGP_SECRET" | base64 -di > /tmp/signing-key.gpg
197+
echo "$PGP_SECRET" | base64 -d -i - > /tmp/signing-key.gpg
198198
echo "$PGP_PASSPHRASE" | gpg --pinentry-mode loopback --passphrase-fd 0 --import /tmp/signing-key.gpg
199199
(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)
200200

project/plugins.sbt

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

0 commit comments

Comments
 (0)