Skip to content

Bump golang.org/x/net from 0.25.0 to 0.26.0 #524

Bump golang.org/x/net from 0.25.0 to 0.26.0

Bump golang.org/x/net from 0.25.0 to 0.26.0 #524

Workflow file for this run

name: Go
on:
push:
branches:
- main
pull_request:
workflow_dispatch: # Enables the web UI manual trigger
jobs:
# Go vulnerability check
vuln:
name: govulncheck
runs-on: ubuntu-latest
steps:
- name: govulncheck
uses: golang/govulncheck-action@v1.0.2
with:
go-version-file: go.mod
test:
name: Test
runs-on: ubuntu-22.04
timeout-minutes: 15
steps:
- name: Checkout repo
uses: actions/checkout@v4.1.6
with:
submodules: recursive
- name: Set up Go
uses: actions/setup-go@v5.0.1
with:
go-version: ^1
- name: Vet Go code
run: go vet ./...
- name: Run Go tests
run: go test -mod=readonly -v -race ./...
- name: Verify repo is unchanged
run: git diff --exit-code HEAD