Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pax-utils:master commit in: .github/workflows/
Date: Sun, 06 Feb 2022 01:27:40
Message-Id: 1644110790.47f5c9ddd4d2123babeab152a143a0f28e4b7a99.vapier@gentoo
1 commit: 47f5c9ddd4d2123babeab152a143a0f28e4b7a99
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 6 01:26:30 2022 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 6 01:26:30 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=47f5c9dd
7
8 GH: simplify coverity GH action
9
10 Newer version has better defaults.
11
12 Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
13
14 .github/workflows/coverity.yml | 11 ++---------
15 1 file changed, 2 insertions(+), 9 deletions(-)
16
17 diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml
18 index f8ae34b..7e729c4 100644
19 --- a/.github/workflows/coverity.yml
20 +++ b/.github/workflows/coverity.yml
21 @@ -10,17 +10,10 @@ on:
22
23 jobs:
24 coverity:
25 - strategy:
26 - matrix:
27 - os: [ubuntu-latest]
28 - cc: [gcc]
29 - runs-on: ${{ matrix.os }}
30 - env:
31 - CC: ${{ matrix.cc }}
32 + runs-on: ubuntu-latest
33 steps:
34 - uses: actions/checkout@v2
35 - - uses: vapier/coverity-scan-action@v0
36 + - uses: vapier/coverity-scan-action@v1
37 with:
38 - project: gentoo%2Fpax-utils
39 email: vapier@g.o
40 token: ${{ secrets.COVERITY_SCAN_TOKEN }}