Skip to content

chore: bump Go to 1.23.4 (#599) #22

chore: bump Go to 1.23.4 (#599)

chore: bump Go to 1.23.4 (#599) #22

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*.*.*'
jobs:
lint-and-test:
uses: ./.github/workflows/lint_and_test.yml
goreleaser:
runs-on: ubuntu-latest
needs: [lint-and-test]
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version-file: 'go.mod'
- name: Login to GitHub Container Registry
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@9ed2f89a662bf1735a48bc8557fd212fa902bebf # v6.1.0
with:
version: '~> v2'
args: release --clean
env:
# needed for updating https://github.com/patrickhoefler/homebrew-tap
GITHUB_TOKEN: ${{ secrets.GH_PAT }}