From 167ea9e2d9368dd5c7d62488cd31af0a88e2bdd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Wed, 25 Oct 2023 21:37:25 +0000 Subject: [PATCH] Fix 3 actions --- .github/workflows/dockerfile.yml | 2 +- .github/workflows/integrity.yml | 1 + .github/workflows/spelling.yml | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dockerfile.yml b/.github/workflows/dockerfile.yml index 07bc5dd..e4da966 100644 --- a/.github/workflows/dockerfile.yml +++ b/.github/workflows/dockerfile.yml @@ -1,7 +1,7 @@ # yaml-language-server: $schema=https://json.schemastore.org/github-workflow name: "Dockerfile" -# Hadolint is going to hurt your feelings! +# Hadolint is going to hurt your feelings! on: # yamllint disable-line rule:truthy pull_request: diff --git a/.github/workflows/integrity.yml b/.github/workflows/integrity.yml index b1cb26c..07b452d 100644 --- a/.github/workflows/integrity.yml +++ b/.github/workflows/integrity.yml @@ -26,6 +26,7 @@ jobs: executables: >- bin/make-reusable-integrity.sh not-printable-ascii-paths: >- + bin/ src/ resources/ tests/ diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml index d7c1a73..00e25a8 100644 --- a/.github/workflows/spelling.yml +++ b/.github/workflows/spelling.yml @@ -30,7 +30,7 @@ jobs: uses: "actions/checkout@v3.6.0" - name: "Search for misspellings" - #uses: "crate-ci/typos@v1.16.4" + #uses: "crate-ci/typos@v1.16.20" env: GH_TOKEN: "${{ github.token }}" # yamllint disable rule:line-length @@ -46,5 +46,5 @@ jobs: | tar -xz -C "${{ runner.temp }}/typos" ./typos "${{ runner.temp }}/typos/typos" --version git grep --files-with-matches --null -I -e '.' \ - | xargs -0 -t -- "${{ runner.temp }}/typos/typos" --format json \ + | xargs --null --verbose -- "${{ runner.temp }}/typos/typos" --format json \ | jq --raw-output '"::warning file=\(.path),line=\(.line_num),col=\(.byte_offset)::\"\(.typo)\" should be \"" + (.corrections // [] | join("\" or \"") + "\".")'