Bump golang.org/x/net from 0.14.0 to 0.17.0 #355
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Analysis | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
static_analysis: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- uses: WillAbides/[email protected] | |
with: | |
go-version: '1.21.x' | |
- name: Install build dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends clang libgl1-mesa-dev libegl1-mesa-dev libgles2-mesa-dev libx11-dev xorg-dev | |
- name: Install static analysis tools | |
run: | | |
go install github.com/securego/gosec/v2/cmd/[email protected] | |
go install github.com/fzipp/gocyclo/cmd/[email protected] | |
go install honnef.co/go/tools/cmd/[email protected] | |
go install mvdan.cc/[email protected] | |
- name: Vet | |
run: go vet ./... | |
- name: Gofumpt | |
run: test -z $(gofumpt -d -e . | tee /dev/stderr) | |
- name: Gocyclo | |
run: gocyclo -over 20 . | |
- name: Staticcheck | |
run: staticcheck ./... | |
- name: Gosec | |
run: gosec ./... |