Skip to content

Bump the actions group across 1 directory with 3 updates #183

Bump the actions group across 1 directory with 3 updates

Bump the actions group across 1 directory with 3 updates #183

Workflow file for this run

name: CI
on:
pull_request:
types:
- opened
- synchronize
paths-ignore:
- README.md
- .gitignore
merge_group:
permissions: {}
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: read
env:
GOPATH: /home/runner/go
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
submodules: recursive
persist-credentials: false
- name: Setup Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version-file: './.go-version'
check-latest: true
- name: Format check
run: make fmt
- name: golangci-lint
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
with:
version: v2.2
args: --build-tags testonly
- name: Check generated code
run: make generate