diff --git a/.github/workflows/check-vulnerabilities.yml b/.github/workflows/check-vulnerabilities.yml index f10eb3f5f6..c8451b57e7 100644 --- a/.github/workflows/check-vulnerabilities.yml +++ b/.github/workflows/check-vulnerabilities.yml @@ -22,6 +22,7 @@ on: branches: - master - develop + - "**" jobs: check-vulnerabilities: @@ -47,7 +48,7 @@ jobs: run: govulncheck -C . -format text ./... | tee govulncheck.txt - name: Check if only known vulnerabilities were found - run: cat govulncheck.txt | grep "Your code is affected by 2 vulnerabilities from 1 module." + run: cat govulncheck.txt | grep "Your code is affected by 3 vulnerabilities from 1 module." # Use the steps below once the x/crisis (crisis.init) bug is fixed or if the # ability to silence is implemented: https://github.com/golang/go/issues/61211