Skip to content

Commit 155777b

Browse files
committed
Switch CICD to use actions/setup-python
1 parent fd7529c commit 155777b

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/integration-tests.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,12 @@ jobs:
2626

2727
steps:
2828
- uses: actions/checkout@v4
29-
- name: setup pyenv ${{ matrix.python-version }}
30-
uses: "gabrielfalcao/pyenv-action@v16"
29+
30+
- uses: actions/setup-python@v5
31+
name: Install Python ${{ matrix.python-version }}
3132
with:
32-
default: 2.7.14
33-
versions: ${{ matrix.python-version }}
33+
python-version: "${{ matrix.python_version }}"
34+
allow-prereleases: true
3435

3536
- name: Set up JDK ${{ matrix.java-version }}
3637
uses: actions/setup-java@v4

0 commit comments

Comments
 (0)