Skip to content

Commit 89ae54c

Browse files
Possible fix for #2
1 parent 0c969c3 commit 89ae54c

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

action.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,16 @@ runs:
104104
printf "%s\n" "::group:: Install requests"
105105
pip --python ${{ steps.cp313.outputs.python-path }} --no-input install "requests>=2.32.3" ;
106106
printf "%s\n" "::endgroup::"
107-
if: ${{ !cancelled() }}
107+
if: ${{ !cancelled() && runner.os != 'Windows' }}
108+
109+
- name: "Install ShellCheck Scan dependencies (Windows)"
110+
shell: bash
111+
run: |
112+
printf "%s\n" "::group:: Install via pip if Windows works (Experemental)"
113+
pip --no-input install "sarif-om>=1.0.4"
114+
pip --no-input install "requests>=2.32.3"
115+
printf "%s\n" "::endgroup::"
116+
if: ${{ !cancelled() && runner.os == 'Windows' }}
108117

109118
- name: "Get Matching Files"
110119
id: shellfiles

0 commit comments

Comments
 (0)