Skip to content

chore(go): bump Go to 1.25.11 to patch stdlib vulnerabilities #25

chore(go): bump Go to 1.25.11 to patch stdlib vulnerabilities

chore(go): bump Go to 1.25.11 to patch stdlib vulnerabilities #25

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_call:
permissions:
contents: read
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Build
run: go build ./...
- name: Test
run: go test ./... -race -coverprofile=cover.out
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v9
vulncheck:
name: vulncheck
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Run govulncheck
run: go run golang.org/x/vuln/cmd/govulncheck@latest ./...