Skip to content

Bump golangci/golangci-lint-action from 5.0.0 to 5.3.0 #209

Bump golangci/golangci-lint-action from 5.0.0 to 5.3.0

Bump golangci/golangci-lint-action from 5.0.0 to 5.3.0 #209

Workflow file for this run

on:
push:
branches:
- "*"
pull_request:
name: Build
jobs:
checks:
name: Build
runs-on: ubuntu-latest
env:
GO111MODULE: "on"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- uses: actions/cache@v4
with:
# In order:
# * Module download cache
# * Build cache (Linux)
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- run: make build_amd64
- run: make build_i386