Skip to content

Bump actions/checkout from 3.5.3 to 4.1.7 #77

Bump actions/checkout from 3.5.3 to 4.1.7

Bump actions/checkout from 3.5.3 to 4.1.7 #77

Workflow file for this run

name: lint
on:
pull_request:
branches:
- main
types: [opened, reopened, synchronize]
permissions:
contents: read
pull-requests: read
checks: write
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run vet
run: go vet ./...
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
args: --timeout=2m