From 1f683af79e2a5cce685ae6c666fdd5ef53b84635 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Fri, 8 Sep 2023 07:00:02 +0000 Subject: [PATCH] fix --- .github/workflows/reusable-integrity.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/reusable-integrity.yml b/.github/workflows/reusable-integrity.yml index 40dc910..387cb15 100644 --- a/.github/workflows/reusable-integrity.yml +++ b/.github/workflows/reusable-integrity.yml @@ -119,16 +119,18 @@ jobs: run: | mkdir -p "${{ runner.temp }}/cloc" RELEASE_ASSET_URL="$( - # v1.96 - gh api /repos/AlDanial/cloc/releases/86472842 \ + # v1.98 + gh api /repos/AlDanial/cloc/releases/117882376 \ --jq '."assets"[] | select(."name" | test("^cloc-.+\\.pl$")) | ."browser_download_url"' )" wget --secure-protocol=TLSv1_3 --max-redirect=1 --retry-on-host-error --retry-connrefused --tries=3 \ --no-verbose --output-document="${{ runner.temp }}/cloc/cloc" "${RELEASE_ASSET_URL}" { + set -x + cat <(echo -e 'LICENSE\npackage-lock.json') echo '```' perl "${{ runner.temp }}/cloc/cloc" --hide-rate --vcs=git \ - --exclude-list-file=<(echo "package-lock.json") \ + --exclude-list-file=<(echo -e 'LICENSE\npackage-lock.json') \ --ignored="${{ runner.temp }}/cloc/.clocignored" cat "${{ runner.temp }}/cloc/.clocignored" echo '```'