From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 009F0158087 for ; Sun, 6 Feb 2022 01:27:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F3DF2E0798; Sun, 6 Feb 2022 01:27:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7E7A1E0798 for ; Sun, 6 Feb 2022 01:27:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 62264342D25 for ; Sun, 6 Feb 2022 01:27:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E391290 for ; Sun, 6 Feb 2022 01:27:36 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1644110790.47f5c9ddd4d2123babeab152a143a0f28e4b7a99.vapier@gentoo> Subject: [gentoo-commits] proj/pax-utils:master commit in: .github/workflows/ X-VCS-Repository: proj/pax-utils X-VCS-Files: .github/workflows/coverity.yml X-VCS-Directories: .github/workflows/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 47f5c9ddd4d2123babeab152a143a0f28e4b7a99 X-VCS-Branch: master Date: Sun, 6 Feb 2022 01:27:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6efa8c55-f923-4fed-aea9-2aec8f69c728 X-Archives-Hash: b6fcb6d452f0bbd4a0bc985d62384411 commit: 47f5c9ddd4d2123babeab152a143a0f28e4b7a99 Author: Mike Frysinger gentoo org> AuthorDate: Sun Feb 6 01:26:30 2022 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Sun Feb 6 01:26:30 2022 +0000 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=47f5c9dd GH: simplify coverity GH action Newer version has better defaults. Signed-off-by: Mike Frysinger gentoo.org> .github/workflows/coverity.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index f8ae34b..7e729c4 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -10,17 +10,10 @@ on: jobs: coverity: - strategy: - matrix: - os: [ubuntu-latest] - cc: [gcc] - runs-on: ${{ matrix.os }} - env: - CC: ${{ matrix.cc }} + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: vapier/coverity-scan-action@v0 + - uses: vapier/coverity-scan-action@v1 with: - project: gentoo%2Fpax-utils email: vapier@gentoo.org token: ${{ secrets.COVERITY_SCAN_TOKEN }}