Skip to content

Commit 913069d

Browse files
Fix pre-commit workflow syntax errors
- Add missing '- name:' for checkout step (was causing YAML parse error) - Fix indentation of checkout step - Update actions/checkout to v4 and actions/setup-python to v5 - Update Python version from 3.8 to 3.10 to match Dockerfile Co-Authored-By: Itamar Hartstein <haritamar@gmail.com>
1 parent 423c94e commit 913069d

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/run-precommit.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ jobs:
99
code-quality:
1010
runs-on: ubuntu-latest
1111
steps:
12-
uses: actions/checkout@v3
12+
- name: Checkout
13+
uses: actions/checkout@v4
1314

1415
- name: Set up Python
15-
uses: actions/setup-python@v4.3.0
16+
uses: actions/setup-python@v5
1617
with:
17-
python-version: '3.8'
18+
python-version: '3.10'
1819

1920
- name: Install dev requirements
2021
run: pip install -r dev-requirements.txt

0 commit comments

Comments
 (0)