Skip to content

Bump actions/setup-go from 4.1.0 to 5.0.2 #20

Bump actions/setup-go from 4.1.0 to 5.0.2

Bump actions/setup-go from 4.1.0 to 5.0.2 #20

Workflow file for this run

name: lint
on:
push:
branches:
- main
pull_request: {}
permissions: read-all
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4.1.7
- name: Install Go
uses: actions/setup-go@v5.0.2
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- name: Setup GO env
run: go env -w CGO_ENABLED=0
- name: golangci-lint
uses: golangci/golangci-lint-action@c7bab6f874a90c53ecf7e5c027cf93430c8aac17
with:
version: v1.60.3
args: --config=.golangci.yml --verbose --out-${NO_FUTURE}format colored-line-number
skip-cache: true