Skip to content

Commit 081c170

Browse files
authored
Update Python version and checkout action in lint workflow
1 parent 49c68ae commit 081c170

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
strategy:
1616
matrix:
1717
linter: ['flake8', 'pylint', 'ruff', 'mypy', 'pytype', 'pyright', 'fixit', 'pyre']
18-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
18+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1919
os: [ubuntu-latest, macos-latest] # doesn't yet work on Windows
2020
fail-fast: false
2121
permissions:
2222
security-events: write
2323

2424
steps:
2525
- name: Checkout repo
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727

2828
# install dependencies for all linters, then run the linter, so we don't get import failures when the linters scan the code
2929
# not required, just makes the test cases a bit cleaner

0 commit comments

Comments
 (0)