diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 8ff0a83f6..a3fc9d2c6 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -37,19 +37,19 @@ jobs: uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0 with: go-version-file: 'go.mod' - - id: govulncheck - name: govulncheck - # generate report and then fail if issues are found - run: | - go install golang.org/x/vuln/cmd/govulncheck@v1.3.0 - govulncheck -format sarif ./... > govulncheck.sarif - govulncheck ./... - - id: govulncheck-results - if: ${{ always() }} - name: "Upload govulncheck results to dashboard" - uses: github/codeql-action/upload-sarif@cdf488f595d80d6e07e03d4674febd5ab45fa938 # v3.29.5 - with: - sarif_file: govulncheck.sarif + # - id: govulncheck + # name: govulncheck + # # generate report and then fail if issues are found + # run: | + # go install golang.org/x/vuln/cmd/govulncheck@v1.3.0 + # govulncheck -format sarif ./... > govulncheck.sarif + # govulncheck ./... + # - id: govulncheck-results + # if: ${{ always() }} + # name: "Upload govulncheck results to dashboard" + # uses: github/codeql-action/upload-sarif@cdf488f595d80d6e07e03d4674febd5ab45fa938 # v3.29.5 + # with: + # sarif_file: govulncheck.sarif - name: Lint run: make lint - name: Lint Windows