Skip to content

Commit f357200

Browse files
committed
chore: updates github action versions and scanner config
1 parent dc6b011 commit f357200

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/version_scanner.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Version Scanner
1+
name: Version Scan
22

33
on:
44
push:
@@ -15,13 +15,13 @@ permissions:
1515

1616
jobs:
1717
scan:
18-
name: Run Version Scanner
18+
name: Version Scan
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222

2323
- name: Set up Python
24-
uses: actions/setup-python@v5
24+
uses: actions/setup-python@v6
2525
with:
2626
python-version: '3.14'
2727

@@ -33,14 +33,14 @@ jobs:
3333
- name: Run Version Scanner
3434
run: |
3535
# Use -o to output the raw CSV to a file, and --stdout to print the summary to the GitHub Actions UI
36-
python scripts/version_scanner/version_scanner.py -d python -v 3.7 --stdout -o scanner_output.csv
36+
python scripts/version_scanner/version_scanner.py -d python -v 3.7 --stdout -o version_scanner_output.csv
3737
3838
- name: Upload CSV Results
3939
if: always()
40-
uses: actions/upload-artifact@v4
40+
uses: actions/upload-artifact@v7
4141
with:
4242
name: version-scanner-results
43-
path: scanner_output.csv
43+
path: version_scanner_output.csv
4444

4545
- name: Create or update issue on finding
4646
if: failure()

0 commit comments

Comments
 (0)