From c6b23321ee3f11ee36e5bec6cd032ca4d891f162 Mon Sep 17 00:00:00 2001 From: Shawn Wang Date: Wed, 18 Oct 2023 15:51:19 -0700 Subject: [PATCH] Bump import gpg action version Using a newer version to get rid of deprecation notice for save-state and set-output warnings in the v2 release. Signed-off-by: Shawn Wang --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ed47bc580..bf9990d1a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,10 +31,10 @@ jobs: - name: Import GPG key id: import_gpg - uses: crazy-max/ghaction-import-gpg@v2 - env: - GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} - PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} + uses: crazy-max/ghaction-import-gpg@v6 + with: + gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} + passphrase: ${{ secrets.GPG_PASSPHRASE }} - name: Run GoReleaser uses: goreleaser/goreleaser-action@v5