Skip to content

chore(deps): update actions/checkout action to v6 #465

chore(deps): update actions/checkout action to v6

chore(deps): update actions/checkout action to v6 #465

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
test:
strategy:
matrix:
go-version: ['1.21', '1.22', stable]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
with:
persist-credentials: false
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6
with:
go-version: ${{ matrix.go-version }}
- uses: golangci/golangci-lint-action@0a35821d5c230e903fcfe077583637dea1b27b47 # v9
- run: make lint
- run: make test
- run: make bench