Skip to content

Bump the actions group across 1 directory with 5 updates #170

Bump the actions group across 1 directory with 5 updates

Bump the actions group across 1 directory with 5 updates #170

Workflow file for this run

name: CI
on:
pull_request:
types:
- opened
- synchronize
paths-ignore:
- README.md
- .gitignore
merge_group:
jobs:
lint:
runs-on: ubuntu-latest
env:
GOPATH: /home/runner/go
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
submodules: recursive
- name: Setup Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version: '1.21'
check-latest: true
- name: Format check
run: make fmt
- name: golangci-lint
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6.1.1
with:
version: v1.59
args: --build-tags testonly
- name: Check generated code
run: make generate