From ee0f0b7bfebe1421beaff00742b29b3e6b3a32e1 Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Thu, 6 Mar 2025 14:35:12 +0000 Subject: [PATCH] workflows: shellcheck: Expand vendor ignore - In the previous PR I only skipped the runtime/vendor directory, but errors are showing up in other vendor packages, so try a wildcard skip - Also update the job step was we can distinguish between the required and non-required versions Signed-off-by: stevenhorsman --- .github/workflows/shellcheck.yaml | 2 +- .github/workflows/shellcheck_required.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/shellcheck.yaml b/.github/workflows/shellcheck.yaml index dba153d31a..f057ca9c8b 100644 --- a/.github/workflows/shellcheck.yaml +++ b/.github/workflows/shellcheck.yaml @@ -27,4 +27,4 @@ jobs: - name: Run ShellCheck uses: ludeeus/action-shellcheck@master with: - ignore_paths: ./src/runtime/vendor/** + ignore_paths: "**/vendor/**" diff --git a/.github/workflows/shellcheck_required.yaml b/.github/workflows/shellcheck_required.yaml index 84e9467617..07058e7247 100644 --- a/.github/workflows/shellcheck_required.yaml +++ b/.github/workflows/shellcheck_required.yaml @@ -16,7 +16,7 @@ concurrency: cancel-in-progress: true jobs: - shellcheck: + shellcheck-required: runs-on: ubuntu-24.04 steps: - name: Checkout the code @@ -29,4 +29,4 @@ jobs: uses: ludeeus/action-shellcheck@master with: severity: error - ignore_paths: ./src/runtime/vendor/** + ignore_paths: "**/vendor/**"