File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -63,10 +63,12 @@ runs:
63
63
steps :
64
64
- name : Checkout code
65
65
uses : actions/checkout@v4
66
+
66
67
- name : Set up Python
67
- uses : actions/setup-python@v4
68
+ uses : actions/setup-python@v5
68
69
with :
69
70
python-version : ${{ inputs.python-version }}
71
+
70
72
- name : Run Python Lint
71
73
run : |
72
74
echo "::debug::Running Python Lint for ${INPUTS_LINTER} on ${INPUTS_TARGET} with Python ${INPUTS_PYTHON_VERSION}"
@@ -202,14 +204,16 @@ runs:
202
204
INPUTS_TYPESHED_VERSION : ${{ inputs.typeshed-version }}
203
205
GH_TOKEN : ${{ github.token }}
204
206
shell : bash
207
+
205
208
- name : Upload SARIF
206
209
if : ${{ hashFiles(inputs.output) != '' }}
207
210
uses : github/codeql-action/upload-sarif@v3
208
211
with :
209
212
sarif_file : ${{ inputs.output }}
213
+
210
214
- name : Upload SARIF as debug artefact
211
215
if : ${{ always() && runner.debug == '1' && hashFiles(inputs.output) != '' }}
212
- uses : actions/upload-artifact@v3
216
+ uses : actions/upload-artifact@v4
213
217
with :
214
218
name : ${{ inputs.output }}
215
219
path : ${{ inputs.output }}
You can’t perform that action at this time.
0 commit comments