Skip to content

chore: bump actions/checkout from 4.1.7 to 4.2.0 #1468

chore: bump actions/checkout from 4.1.7 to 4.2.0

chore: bump actions/checkout from 4.1.7 to 4.2.0 #1468

Workflow file for this run

name: lint-go
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
GO_VERSION: '1.22'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Harden Runner
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
with:
egress-policy: audit
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
submodules: true
fetch-depth: 0
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: ${{ env.GO_VERSION }}
- name: Run go vet
run: |
make vet
- name: Run golangci-lint
run: make lint