Skip to content

Commit

Permalink
Downgrade python, not ubuntu, for k8ssandra ITs
Browse files Browse the repository at this point in the history
  • Loading branch information
rzvoncek committed Dec 16, 2024
1 parent 09151ac commit b8cfe64
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ jobs:

k8ssandra-e2e-tests:
needs: [build]
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
e2e_test:
Expand Down Expand Up @@ -343,6 +343,18 @@ jobs:
repository: k8ssandra/k8ssandra-operator
ref: radovan/ec2-dse-medusa
path: k8ssandra-operator
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Verify Python version and path
run: |
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 1
sudo update-alternatives --config python3
which python
which python3
python --version
python3 --version
- name: Set up Go
uses: actions/setup-go@v3
with:
Expand Down

0 comments on commit b8cfe64

Please sign in to comment.