Skip to content

Bump golangci/golangci-lint-action from 3.7.0 to 5.1.0 #428

Bump golangci/golangci-lint-action from 3.7.0 to 5.1.0

Bump golangci/golangci-lint-action from 3.7.0 to 5.1.0 #428

Workflow file for this run

name: golangci-lint
on:
push:
branches:
- 'master'
pull_request:
types: [opened, synchronize]
branches:
- '*'
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- name: install go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: golangci-lint
uses: golangci/golangci-lint-action@9d1e0624a798bb64f6c3cea93db47765312263dc # [email protected]
with:
args: -v --timeout=5m
skip-build-cache: true
skip-pkg-cache: true