Skip to content

Update golangci-lint workflow to use Go 1.24 #130

Update golangci-lint workflow to use Go 1.24

Update golangci-lint workflow to use Go 1.24 #130

Workflow file for this run

name: golangci-lint
on:
push:
permissions:
contents: read
jobs:
golangci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "1.24"
- name: Vendor modules for later steps.
run: |
go mod vendor
- uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.55
args:
-v