From b51669eaa1de2561a4810181f3fac40e434b6a04 Mon Sep 17 00:00:00 2001 From: Ferdinando Formica Date: Tue, 18 Jun 2024 10:39:35 +0100 Subject: [PATCH] Fix goreleaser dependency (#320) --- .github/workflows/release.yml | 6 +++--- CHANGELOG.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f08bda98..3c7d4257 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,12 +1,12 @@ # This GitHub action can publish assets for release when a tag is created. # Currently its setup to run on any tag that matches the pattern "v*" (ie. v0.1.0). # -# This uses an action (paultyng/ghaction-import-gpg) that assumes you set your +# This uses an action (paultyng/ghaction-import-gpg) that assumes you set your # private key in the `GPG_PRIVATE_KEY` secret and passphrase in the `PASSPHRASE` # secret. If you would rather own your own GPG handling, please fork this action # or use an alternative one for key handling. # -# You will need to pass the `--batch` flag to `gpg` in your signing step +# You will need to pass the `--batch` flag to `gpg` in your signing step # in `goreleaser` to indicate this is being used in a non-interactive mode. # name: release @@ -40,7 +40,7 @@ jobs: name: Run GoReleaser uses: goreleaser/goreleaser-action@v2 with: - version: latest + version: v1.26.2 args: release --rm-dist env: GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f7160c1..6259ce7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 2.3.0 (June 17, 2024) +## 2.3.0 (June 18, 2024) ENHANCEMENTS * Adds support for redirect endpoints BUGFIX