Skip to content

Commit 505103f

Browse files
committed
CICD: fix PyPy version
The error from CI was: Run actions/setup-python@v2 with: python-version: pypy3 token: *** Error: PyPy 3.6 not found
1 parent 4890aa9 commit 505103f

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/cicd.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@ jobs:
1515
- 3.9 # Reference version used to run integration tests;
1616
# to keep in sync with 'if: ' statements in the rest
1717
# of this file.
18-
- pypy3
18+
- pypy3.8 # To keep in sync with other pypy releases referenced in the
19+
# "Docker image tests" and "Push Docker image to Docker Hub"
20+
# sections of this file.
1921

2022
steps:
2123
- uses: actions/checkout@v2
2224

2325
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v2
26+
uses: actions/setup-python@v4
2527
with:
2628
python-version: ${{ matrix.python-version }}
2729

@@ -370,7 +372,7 @@ jobs:
370372
- uses: actions/checkout@v2
371373

372374
- name: Set up Python ${{ matrix.python-version }}
373-
uses: actions/setup-python@v2
375+
uses: actions/setup-python@v4
374376
with:
375377
python-version: 3.6
376378

0 commit comments

Comments
 (0)