Skip to content

Bump actions/checkout from 5 to 6 #544

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #544

Workflow file for this run

---
name: GoLang Linting
on:
pull_request:
types: ['opened', 'synchronize']
paths:
- '**.go'
- 'vendor/**'
- '.github/workflows/**'
jobs:
golint:
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: 'stable'
- name: Set GOROOT
run: export "GOROOT=$(go env GOROOT)"
- uses: golangci/golangci-lint-action@v8
with:
version: 'latest'
args: -v