Skip to content

Bump golang.org/x/net from 0.21.0 to 0.23.0 in the go_modules group #129

Bump golang.org/x/net from 0.21.0 to 0.23.0 in the go_modules group

Bump golang.org/x/net from 0.21.0 to 0.23.0 in the go_modules group #129

Workflow file for this run

name: Go
on:
push:
branches: [v2]
pull_request:
branches: [v2]
jobs:
build:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Lint
uses: golangci/golangci-lint-action@v5
with:
version: latest
args: --timeout=10m
- name: Run go Security Scanner
uses: securego/gosec@master
with:
args: ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v `go list ./...`