Skip to content

Commit

Permalink
test runh on ubuntu-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
stlankes committed Feb 20, 2025
1 parent d9bc5ff commit 2b85458
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:

test:
name: Setup, build and test
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
env:
KUBERNETES_VERSION: v1.31
CRIO_VERSION: v1.31
KUBERNETES_VERSION: v1.32
CRIO_VERSION: v1.32
steps:
- name: Install CRI-O
run: |
Expand All @@ -44,9 +44,13 @@ jobs:
echo "deb [signed-by=/etc/apt/keyrings/cri-o-apt-keyring.gpg] https://pkgs.k8s.io/addons:/cri-o:/stable:/$CRIO_VERSION/deb/ /" |
sudo tee /etc/apt/sources.list.d/cri-o.list
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu $(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}") stable" | sudo tee /etc/apt/sources.list.d/docker.list
sudo apt-get remove conmon
sudo apt-get update
sudo apt-get install -y cri-o docker
sudo apt-get install -y cri-o docker-ce docker-ce-cli
sudo systemctl start crio.service
- name: Install crictl
Expand Down

0 comments on commit 2b85458

Please sign in to comment.