Skip to content

chore(deps): update golangci/golangci-lint-action action to v5 (#17) #34

chore(deps): update golangci/golangci-lint-action action to v5 (#17)

chore(deps): update golangci/golangci-lint-action action to v5 (#17) #34

Workflow file for this run

# This workflow run linters.
# It is supposed to be run on each push to main branch, as well as for each.
name: Linters
on:
push:
branches: [ main ]
pull_request:
branches: [ '*' ]
permissions:
contents: read
jobs:
golangci-lint:
name: Run golangci-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-go@v5
with:
go-version: '1.20'
cache: false
- uses: golangci/golangci-lint-action@v5
with:
version: v1.53
skip-cache: true