From 4dec7b0a07fd438bc991c7090a401f5c38310858 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Mon, 6 Sep 2021 22:33:28 +0200 Subject: [PATCH] chore(deps): bump ghaction-import-gpg to v4 --- .github/workflows/ci.yml | 4 ++-- README.md | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d0f533f9..5fab78cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -120,9 +120,9 @@ jobs: - name: Import GPG key id: import_gpg - uses: crazy-max/ghaction-import-gpg@v3 + uses: crazy-max/ghaction-import-gpg@v4 with: - gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY_TEST }} + gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY_TEST }} passphrase: ${{ secrets.PASSPHRASE_TEST }} - name: Check diff --git a/README.md b/README.md index 95d59304..4a8ed64e 100644 --- a/README.md +++ b/README.md @@ -98,15 +98,16 @@ Or with a condition on GoReleaser step: ### Signing -If [signing is enabled](https://goreleaser.com/customization/#Signing) in your GoReleaser configuration, you can use the [Import GPG](https://github.com/crazy-max/ghaction-import-gpg) GitHub Action along with this one: +If [signing is enabled](https://goreleaser.com/customization/#Signing) in your GoReleaser configuration, you can use +the [Import GPG](https://github.com/crazy-max/ghaction-import-gpg) GitHub Action along with this one: ```yaml - name: Import GPG key id: import_gpg - uses: crazy-max/ghaction-import-gpg@v3 + uses: crazy-max/ghaction-import-gpg@v4 with: - gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} + gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} passphrase: ${{ secrets.PASSPHRASE }} - name: Run GoReleaser