Skip to content

Commit b835423

Browse files
authored
Merge pull request #15 from advanced-security/update-action-versions
Update versions of Actions we use
2 parents fe29c7e + d7920f6 commit b835423

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

action.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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 }}

0 commit comments

Comments
 (0)