Skip to content

[Snyk] Security upgrade axios from 1.4.0 to 1.6.0 #756

[Snyk] Security upgrade axios from 1.4.0 to 1.6.0

[Snyk] Security upgrade axios from 1.4.0 to 1.6.0 #756

# Run static analysis checks
name: Static Analysis
on:
pull_request:
branches:
- main
jobs:
analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: "^1.18" # The Go version to download (if necessary) and use.
- run: go version
- name: Run go vet
run: go vet ./...
- name: Install and run errcheck
run: |
export PATH=${PATH}:`go env GOPATH`/bin
go install github.com/kisielk/errcheck@latest
errcheck ./...
# aligncheck doesn't yet support go1.18
# - name: Install and run aligncheck
# run: |
# go get -u gitlab.com/opennota/check/cmd/aligncheck@latest
# aligncheck ./... || echo "aligncheck detected inefficiently packed structs"
- name: Check yaml field names and yaml tags
run: tools/validate/validateYaml.py
- name: Check json tags
run: tools/validate/validateJson.py