Skip to content

Commit bdc0fd8

Browse files
committed
fix(pre-commit): TRI-237: Address python version issue
1 parent 242fe08 commit bdc0fd8

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/pre-commit.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,11 @@ on:
3131

3232
jobs:
3333
pre-commit:
34-
runs-on: ubuntu-22.04
34+
runs-on: ubuntu-latest
3535
steps:
3636
- uses: actions/checkout@v3
37-
- uses: actions/setup-python@v3
38-
- uses: pre-commit/[email protected]
37+
- uses: actions/setup-python@v5
38+
with:
39+
python-version: '3.11'
40+
- uses: pre-commit/[email protected]
3941

0 commit comments

Comments
 (0)