Downgrade podman to make the GitHub runner work again
See: https://github.com/actions/runner-images/issues/7753
This commit is contained in:
parent
21b699ee16
commit
d4867d5568
|
|
@ -45,6 +45,9 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
python3 -m pip install --upgrade pip
|
python3 -m pip install --upgrade pip
|
||||||
python3 -m pip install -r requirements.txt
|
python3 -m pip install -r requirements.txt
|
||||||
|
# see: https://github.com/actions/runner-images/issues/7753
|
||||||
|
- name: Downgrade podman
|
||||||
|
run: sudo apt install podman=3.4.4+ds1-1ubuntu1 --allow-downgrades
|
||||||
# This is necessary on GH Actions to allow running systemd in rootless containers
|
# This is necessary on GH Actions to allow running systemd in rootless containers
|
||||||
# see: https://github.com/actions/virtual-environments/issues/3536
|
# see: https://github.com/actions/virtual-environments/issues/3536
|
||||||
# see: https://github.com/ansible-community/molecule/discussions/3155
|
# see: https://github.com/ansible-community/molecule/discussions/3155
|
||||||
|
|
|
||||||
|
|
@ -52,6 +52,9 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
python3 -m pip install --upgrade pip
|
python3 -m pip install --upgrade pip
|
||||||
python3 -m pip install -r requirements.txt
|
python3 -m pip install -r requirements.txt
|
||||||
|
# see: https://github.com/actions/runner-images/issues/7753
|
||||||
|
- name: Downgrade podman
|
||||||
|
run: sudo apt install podman=3.4.4+ds1-1ubuntu1 --allow-downgrades
|
||||||
# This is necessary on GH Actions to allow running systemd in rootless containers
|
# This is necessary on GH Actions to allow running systemd in rootless containers
|
||||||
# see: https://github.com/actions/virtual-environments/issues/3536
|
# see: https://github.com/actions/virtual-environments/issues/3536
|
||||||
# see: https://github.com/ansible-community/molecule/discussions/3155
|
# see: https://github.com/ansible-community/molecule/discussions/3155
|
||||||
|
|
|
||||||
|
|
@ -52,6 +52,9 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
python3 -m pip install --upgrade pip
|
python3 -m pip install --upgrade pip
|
||||||
python3 -m pip install -r requirements.txt
|
python3 -m pip install -r requirements.txt
|
||||||
|
# see: https://github.com/actions/runner-images/issues/7753
|
||||||
|
- name: Downgrade podman
|
||||||
|
run: sudo apt install podman=3.4.4+ds1-1ubuntu1 --allow-downgrades
|
||||||
# This is necessary on GH Actions to allow running systemd in rootless containers
|
# This is necessary on GH Actions to allow running systemd in rootless containers
|
||||||
# see: https://github.com/actions/virtual-environments/issues/3536
|
# see: https://github.com/actions/virtual-environments/issues/3536
|
||||||
# see: https://github.com/ansible-community/molecule/discussions/3155
|
# see: https://github.com/ansible-community/molecule/discussions/3155
|
||||||
|
|
|
||||||
|
|
@ -100,6 +100,9 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
python3 -m pip install --upgrade pip
|
python3 -m pip install --upgrade pip
|
||||||
python3 -m pip install -r requirements.txt
|
python3 -m pip install -r requirements.txt
|
||||||
|
# see: https://github.com/actions/runner-images/issues/7753
|
||||||
|
- name: Downgrade podman
|
||||||
|
run: sudo apt install podman=3.4.4+ds1-1ubuntu1 --allow-downgrades
|
||||||
# This is necessary on GH Actions to allow running systemd in rootless containers
|
# This is necessary on GH Actions to allow running systemd in rootless containers
|
||||||
# see: https://github.com/actions/virtual-environments/issues/3536
|
# see: https://github.com/actions/virtual-environments/issues/3536
|
||||||
# see: https://github.com/ansible-community/molecule/discussions/3155
|
# see: https://github.com/ansible-community/molecule/discussions/3155
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue