diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 1a38af0..5378802 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -75,7 +75,8 @@ jobs: id: "goreleaser" with: distribution: "goreleaser-pro" - version: "2.3.1" + # Pinning to version 2.2.0 to get around a regression in 2.3.0. + version: "2.2.0" args: "release -f .goreleaser.docker.yml --clean --split --snapshot" env: GORELEASER_KEY: "${{ secrets.GORELEASER_KEY }}" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 6b7cca4..77b4f1a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -21,7 +21,8 @@ jobs: - uses: "goreleaser/goreleaser-action@v6" with: distribution: "goreleaser-pro" - version: &goreleaser_version "2.3.1" + # Pinning to v2.2.0 to work around a regression in 2.3.0 + version: &goreleaser_version "2.2.0" args: "release --clean" env: GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"