Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: gh action bump ubuntu for podman tests #19256

Merged
merged 1 commit into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ jobs:
JOB_NAME: functional_podman_ubuntu
GOPOGH_RESULT: ""
SHELL: "/bin/bash" # To prevent https://github.com/kubernetes/minikube/issues/6643
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04 # podman 4+ is only available on ubuntu 24.04 https://github.com/kubernetes/minikube/issues/19232#issuecomment-2229050557
steps:
- name: Install kubectl
shell: bash
Expand All @@ -437,8 +437,9 @@ jobs:
- name: Install Podman
shell: bash
run: |
sudo apt update
sudo apt install -y podman
sudo apt -q update
sudo apt install -q -y podman
lsb_release -a
echo "--------------------------"
podman version || true
echo "--------------------------"
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ jobs:
JOB_NAME: functional_podman_ubuntu
GOPOGH_RESULT: ""
SHELL: "/bin/bash" # To prevent https://github.com/kubernetes/minikube/issues/6643
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04 # podman 4+ is only available on ubuntu 24.04 https://github.com/kubernetes/minikube/issues/19232#issuecomment-2229050557
steps:
- name: Install kubectl
shell: bash
Expand All @@ -435,8 +435,9 @@ jobs:
- name: Install Podman
shell: bash
run: |
sudo apt update
sudo apt install -y podman
sudo apt -q update
sudo apt install -q -y podman
lsb_release -a
echo "--------------------------"
podman version || true
echo "--------------------------"
Expand Down