Skip to content

build(deps): bump golang.org/x/net from 0.16.0 to 0.17.0 #3557

build(deps): bump golang.org/x/net from 0.16.0 to 0.17.0

build(deps): bump golang.org/x/net from 0.16.0 to 0.17.0 #3557

Workflow file for this run

name: pr
on: [ pull_request ]
permissions:
contents: read
jobs:
semgrep:
if: ${{ github.actor != 'dependabot[bot]' }}
runs-on: ubuntu-latest
container:
image: returntocorp/semgrep
steps:
# Retrieve the source code for the repository
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
# Fetch the semgrep rules
- run: git clone https://github.com/dgryski/semgrep-go.git
# Run the rule checker using the fetched rules
- run: semgrep ci -f semgrep-go
check-race:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe
with:
# https://www.npmjs.com/package/semver#caret-ranges-123-025-004
go-version: '^1.20'
- run: go version
- run: make deps
- run: make check-race
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe
with:
# https://www.npmjs.com/package/semver#caret-ranges-123-025-004
go-version: '^1.20'
- run: go version
- run: make deps
- run: make check-fmt
- run: make vet
- run: make staticcheck
- run: make shortcheck