Skip to content

chore(deps): update dependency golangci/golangci-lint to v1.58.0 #259

chore(deps): update dependency golangci/golangci-lint to v1.58.0

chore(deps): update dependency golangci/golangci-lint to v1.58.0 #259

Workflow file for this run

---
name: Go
on:
push:
tags:
- 'v*'
branches:
- 'master'
pull_request:
env:
# renovate: datasource=github-releases depName=golangci/golangci-lint versioning=semver-coerced
GOLANGCI_LINT_VERSION: "v1.58.0"
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: golangci-lint
uses: golangci/golangci-lint-action@v5
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Test
run: go test -v ./...
- name: Unshallow
# If we are building a tag/release, fetch history so the changelog can be generated.
if: startsWith(github.ref, 'refs/tags/')
run: git fetch --prune --unshallow
- name: Build (Snapshot)
uses: goreleaser/goreleaser-action@v5
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
with:
version: latest
args: --rm-dist --skip-publish --snapshot
- name: Upload Artifacts (Snapshot)
uses: actions/upload-artifact@v4
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
with:
name: dist
path: dist/*
- name: Release
uses: goreleaser/goreleaser-action@v5
if: startsWith(github.ref, 'refs/tags/')
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}