Skip to content

Commit f086305

Browse files
Update sbt-typelevel-ci-release, ... to 0.5.4 (#762)
* 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>
1 parent 79dfcb7 commit f086305

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
@@ -114,15 +114,15 @@ jobs:
114114
env:
115115
PGP_SECRET: ${{ secrets.PGP_SECRET }}
116116
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
117-
run: echo $PGP_SECRET | base64 -di | gpg --import
117+
run: echo $PGP_SECRET | base64 -d -i - | gpg --import
118118

119119
- name: Import signing key and strip passphrase
120120
if: env.PGP_SECRET != '' && env.PGP_PASSPHRASE != ''
121121
env:
122122
PGP_SECRET: ${{ secrets.PGP_SECRET }}
123123
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
124124
run: |
125-
echo "$PGP_SECRET" | base64 -di > /tmp/signing-key.gpg
125+
echo "$PGP_SECRET" | base64 -d -i - > /tmp/signing-key.gpg
126126
echo "$PGP_PASSPHRASE" | gpg --pinentry-mode loopback --passphrase-fd 0 --import /tmp/signing-key.gpg
127127
(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)
128128

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

33
addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % sbtTypelevelVersion)
44

0 commit comments

Comments
 (0)