Skip to content

Bump actions/checkout from 3 to 4 (#120) #176

Bump actions/checkout from 3 to 4 (#120)

Bump actions/checkout from 3 to 4 (#120) #176

Workflow file for this run

name: Go
on:
push:
branches: [ v3, main ]
pull_request:
branches: [ v3, main ]
jobs:
build:
strategy:
fail-fast: false
matrix:
GO_VERSION:
- "1.22.x"
- "1.21.x"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Go ${{ matrix.GO_VERSION }}
uses: actions/setup-go@v4
with:
go-version: "${{ matrix.GO_VERSION }}"
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
govulncheck:
strategy:
matrix:
GO_VERSION:
# We only need to test vulns on one version
- "1.22.x"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Go ${{ matrix.GO_VERSION }}
uses: actions/setup-go@v4
with:
# When Go produces a security release, we want govulncheck to run
# against the most recently released Go version.
check-latest: true
go-version: "${{ matrix.GO_VERSION }}"
- name: Run govulncheck
run: go run golang.org/x/vuln/cmd/govulncheck@latest ./...