Skip to content

chore(security): Pin workflow actions to commit SHAs #319

chore(security): Pin workflow actions to commit SHAs

chore(security): Pin workflow actions to commit SHAs #319

Workflow file for this run

name: golangci-lint
on:
push:
branches:
- 'master'
pull_request:
type: [created, synchronize, reopened]
branches:
- '*'
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v3
- name: install go
uses: actions/setup-go@v3
with:
go-version-file: go.mod
check-latest: true
- name: golangci-lint
uses: golangci/golangci-lint-action@639cd343e1d3b897ff35927a75193d57cfcba299 # pin@3.6.0
with:
args: -v --timeout=5m
skip-build-cache: true
skip-pkg-cache: true