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:
6363 steps :
6464 - name : Checkout code
6565 uses : actions/checkout@v4
66+
6667 - name : Set up Python
67- uses : actions/setup-python@v4
68+ uses : actions/setup-python@v5
6869 with :
6970 python-version : ${{ inputs.python-version }}
71+
7072 - name : Run Python Lint
7173 run : |
7274 echo "::debug::Running Python Lint for ${INPUTS_LINTER} on ${INPUTS_TARGET} with Python ${INPUTS_PYTHON_VERSION}"
@@ -202,14 +204,16 @@ runs:
202204 INPUTS_TYPESHED_VERSION : ${{ inputs.typeshed-version }}
203205 GH_TOKEN : ${{ github.token }}
204206 shell : bash
207+
205208 - name : Upload SARIF
206209 if : ${{ hashFiles(inputs.output) != '' }}
207210 uses : github/codeql-action/upload-sarif@v3
208211 with :
209212 sarif_file : ${{ inputs.output }}
213+
210214 - name : Upload SARIF as debug artefact
211215 if : ${{ always() && runner.debug == '1' && hashFiles(inputs.output) != '' }}
212- uses : actions/upload-artifact@v3
216+ uses : actions/upload-artifact@v4
213217 with :
214218 name : ${{ inputs.output }}
215219 path : ${{ inputs.output }}
You can’t perform that action at this time.
0 commit comments