From 4df2465c067303c829ddb0d386ff8186008267ac Mon Sep 17 00:00:00 2001 From: Dom Del Nano Date: Sat, 21 Jan 2023 00:22:04 -0800 Subject: [PATCH] Remove hashicorps gpg github action to one that doesn't collide with GitHub's gpg agent --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ba31367..186f7f1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,10 +31,10 @@ jobs: run: echo "::set-output name=api_version::$(go run . describe | jq -r '.api_version')" - name: Import GPG key id: import_gpg - uses: hashicorp/ghaction-import-gpg@v2.1.0 + uses: crazy-max/ghaction-import-gpg@v5.0.0 env: - GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} - PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} + gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} + passphrase: ${{ secrets.GPG_PASSPHRASE }} - name: Run GoReleaser uses: goreleaser/goreleaser-action@v2 with: