From 4708e6fb8be10fd431237b9b74012816e512ee3f Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 7 Feb 2022 13:00:17 -0500 Subject: [PATCH] github: update to latest coverity scan action This simplifies the action code a bit. Change-Id: Ibd6ce393ab2d09b0b6e91cecb3a78a33a18de7c0 Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/3443961 Reviewed-by: Joshua Peraza --- .github/workflows/coverity.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index cfa0f2ab..06f8e276 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -1,7 +1,7 @@ # GitHub actions workflow. # https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions -# https://scan.coverity.com/projects/gentoo-pax-utils +# https://scan.coverity.com/projects/google-breakpad name: Coverity Scan on: @@ -36,9 +36,8 @@ jobs: - run: ./configure --disable-silent-rules working-directory: src - - uses: vapier/coverity-scan-action@v0 + - uses: vapier/coverity-scan-action@v1 with: - project: google%2Fbreakpad command: make -C src -O -j$(getconf _NPROCESSORS_CONF) - email: google-breakpad-dev@googlegroups.com + email: ${{ secrets.COVERITY_SCAN_EMAIL }} token: ${{ secrets.COVERITY_SCAN_TOKEN }}