Skip to content

fix: pin GitHub Actions to SHA for supply chain security #71

fix: pin GitHub Actions to SHA for supply chain security

fix: pin GitHub Actions to SHA for supply chain security #71

Workflow file for this run

name: golangci-lint
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
pull-requests: read
jobs:
golangci:
name: lint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
with:
cache: false
go-version: '1.25.2'
- name: golangci-lint
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8
with:
version: "latest"
args: "--timeout=60m"
skip-cache: true