Skip to content

chore(deps): update golang docker tag to v1.23.3 (#57) #56

chore(deps): update golang docker tag to v1.23.3 (#57)

chore(deps): update golang docker tag to v1.23.3 (#57) #56

Workflow file for this run

name: Release
env:
REGISTRY: ghcr.io
on:
push:
branches: [ "main" ]
tags:
- "v*"
jobs:
releasing:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
with:
go-version: "~1.21"
-
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
-
name: Log in to the Container registry
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 # v6
with:
args: release --clean --verbose --auto-snapshot
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}