Skip to content

Chore(deps): Bump actions/checkout from 4 to 5 in the deps group #612

Chore(deps): Bump actions/checkout from 4 to 5 in the deps group

Chore(deps): Bump actions/checkout from 4 to 5 in the deps group #612

Workflow file for this run

name: Vibe Check
on:
push:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.24
- name: go vet -v ./...
run: go vet -v ./...
- name: gosec ./...
run: | # https://github.com/securego/gosec/issues/469
export PATH=$PATH:$(go env GOPATH)/bin
go install github.com/securego/gosec/v2/cmd/gosec@latest
gosec ./...
- name: go test -race -v ./...
run: go test -race -v ./...
- name: go build -v ./...
run: go build -v ./...