We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c969c3 commit 89ae54cCopy full SHA for 89ae54c
action.yml
@@ -104,7 +104,16 @@ runs:
104
printf "%s\n" "::group:: Install requests"
105
pip --python ${{ steps.cp313.outputs.python-path }} --no-input install "requests>=2.32.3" ;
106
printf "%s\n" "::endgroup::"
107
- if: ${{ !cancelled() }}
+ 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' }}
117
118
- name: "Get Matching Files"
119
id: shellfiles
0 commit comments