Skip to content

golang.org/x/net: update to address CVE-2023-39325, CVE-2023-3978, CV… #3978

golang.org/x/net: update to address CVE-2023-39325, CVE-2023-3978, CV…

golang.org/x/net: update to address CVE-2023-39325, CVE-2023-3978, CV… #3978

Workflow file for this run

name: golangci-lint
on:
pull_request:
permissions:
contents: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
with:
go-version: "1.21"
check-latest: true
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54.2
args: --verbose --timeout 10m --fix=false --new-from-rev=HEAD~ --config=.golangci.yml
- name: check-is-dirty
run: |
if [[ -n $(git status --porcelain) ]]; then
echo "Detected uncommitted changes."
git status
git diff
exit 1
fi