Skip to content

bump golang.org/x/net to 0.17.0 #13

bump golang.org/x/net to 0.17.0

bump golang.org/x/net to 0.17.0 #13

Workflow file for this run

name: GoTest
on:
push:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Run Gosec Security Scanner
uses: securego/gosec@master
with:
# we let the report trigger content trigger a failure using the GitHub Security features.
args: '-no-fail -fmt sarif -out results.sarif ./...'
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v2
with:
# Path to SARIF file relative to the root of the repository
sarif_file: results.sarif
category: my-gosec-tool
- name: Test
run: go test -v -tags test ./...
- name: Update coverage report
uses: ncruces/go-coverage-report@v0
with:
report: 'true'
chart: 'true'
amend: 'false'
if: |
github.event_name == 'push'
continue-on-error: true