Skip to content

chore(deps): update module github.com/golangci/golangci-lint to v1.60.2 #63

chore(deps): update module github.com/golangci/golangci-lint to v1.60.2

chore(deps): update module github.com/golangci/golangci-lint to v1.60.2 #63

Workflow file for this run

name: golangci-lint
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
env:
GOLANGCI_LINT_VERSION: "v1.60.2"
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Setup Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5
with:
go-version: '1.21'
cache: false
- name: Run vet
run: go vet ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86 # v6
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
args: --timeout 3m --enable=gofmt --verbose