From 6ffb08eaf9d11ec8eedae649c52701687717e40c Mon Sep 17 00:00:00 2001 From: Fabian Arndt Date: Fri, 18 Oct 2024 16:32:42 +0200 Subject: [PATCH] Fixed symlinks in action-shellcheck --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 496ffe20..ff60907e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,11 +32,13 @@ jobs: # FIXME: problem matcher is currently disabled upstream, using a fork for the moment # https://github.com/ludeeus/action-shellcheck/pull/103 + # FIXME: symlinks don't work upstream + # https://github.com/ludeeus/action-shellcheck/pull/104 - name: Run ShellCheck - uses: Root-Core/action-shellcheck@master + uses: Root-Core/action-shellcheck@fork with: - format: gcc # gcc is used for the problem matcher - additional_files: winetricks # by default, only files with according extensions are checked + ignore_paths: subprojects # prevent ShellCheck from checking unrelated files + ignore_symlinks: false # winetricks is symlinked # Ruff uses ruff.toml for it's configuration - name: Lint with Ruff