Merge pull request #10990 from kata-containers/shell-check-vendor-skip

workflows: shellcheck: Expand vendor ignore
This commit is contained in:
RuoqingHe
2025-03-12 21:34:26 +08:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -27,4 +27,4 @@ jobs:
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
with:
ignore_paths: ./src/runtime/vendor/**
ignore_paths: "**/vendor/**"

View File

@@ -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/**"