Skip to content

Bump golang.org/x/net from 0.21.0 to 0.23.0 in /examples/minio #442

Bump golang.org/x/net from 0.21.0 to 0.23.0 in /examples/minio

Bump golang.org/x/net from 0.21.0 to 0.23.0 in /examples/minio #442

Workflow file for this run

name: VulnCheck
on:
pull_request:
branches:
- master
- main
push:
branches:
- master
- main
jobs:
vulncheck:
name: Analysis
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ 1.22.x ]
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- name: Get govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
shell: bash
- name: Run govulncheck
run: govulncheck ./...
shell: bash