From 16547b97603ea321ab5e88569947c0dd94520fc7 Mon Sep 17 00:00:00 2001 From: Ankitsinghsisodya Date: Sat, 28 Mar 2026 01:05:49 +0530 Subject: [PATCH] ci: remove redundant single-entry matrix in test-podman-next workflow The strategy matrix defined a single OS entry (ubuntu-latest) and then referenced it via matrix.os. This adds indirection with no benefit. Replace with a direct runs-on value. Fixes knative/func#3529 --- .github/workflows/test-podman-next.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/test-podman-next.yaml b/.github/workflows/test-podman-next.yaml index 8a786f528c..94f23bb68f 100644 --- a/.github/workflows/test-podman-next.yaml +++ b/.github/workflows/test-podman-next.yaml @@ -7,10 +7,7 @@ on: jobs: test: name: Podman Next Test - strategy: - matrix: - os: ["ubuntu-latest"] - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest steps: - name: Remove Unnecessary Software run: |