From 0b16408ddbb46819f9ed13bb62cd59906ad7da4c Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Mon, 28 Apr 2025 13:17:27 -0400 Subject: [PATCH] workflows: use ubuntu-latest on all jobs GitHub has retired 20.04 and jobs using it no longer run. Signed-off-by: John Mulligan --- .github/workflows/main.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 964af862..7155b22b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -51,7 +51,7 @@ jobs: - name: run the tests run: make test podmanbuild: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest # don't run on push, since the "push" job contains the # image build step, so no need to do it twice. if: github.event_name == 'pull_request' @@ -91,8 +91,7 @@ jobs: run: make CONTAINER_CMD=docker image-build test-kubernetes: #runs-on: ubuntu-latest - # need to explicitly use 20.04 to avoid problems with jq... - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest env: CONTAINER_CMD: docker PR_NUM: ${{ github.event.pull_request.number }}