Skip to content

Commit 87b25c5

Browse files
authored
Fix Python version in CI. (#2200)
Also update action versions.
1 parent 1ee6842 commit 87b25c5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/continuous_integration.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
black:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
16-
- uses: actions/setup-python@v1
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-python@v5
1717
with:
18-
python-version: 3.10.18
18+
python-version: '3.10'
1919
- name: Ensure files are formatted with black
2020
run: |
2121
pip install --upgrade pip
@@ -24,7 +24,7 @@ jobs:
2424
docker-image:
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v4
2828
- name: Ensure the docker image works and can start.
2929
run: |
3030
make container-test

0 commit comments

Comments
 (0)