diff --git a/.github/workflows/vuln-check.tml b/.github/workflows/vuln-check.tml deleted file mode 100644 index 511f51d..0000000 --- a/.github/workflows/vuln-check.tml +++ /dev/null @@ -1,30 +0,0 @@ -name: VulnCheck -on: - pull_request: - branches: - - main - - push: - branches: - - main - -permissions: - contents: read # to fetch code (actions/checkout) - -jobs: - vulncheck: - name: Analysis - runs-on: ubuntu-latest - steps: - - name: Check out code into the Go module directory - uses: actions/checkout@v4 - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: 1.23 - - name: Get official govulncheck - run: go install golang.org/x/vuln/cmd/govulncheck@latest - shell: bash - - name: Run govulncheck - run: govulncheck -show verbose ./... - shell: bash