From 862bf8414ae715cd6969b69d7b421a1133047d76 Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Thu, 27 Nov 2025 09:35:53 -0700 Subject: [PATCH] Update GHA versions Signed-off-by: Derek McGowan --- .github/workflows/ci.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2794fed..8f97071 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: strategy: matrix: - os: [ubuntu-22.04, macos-13] # TODO: Add windows-2019 + os: [ubuntu-latest, macos-latest] # windows-latest has fmt issue steps: - uses: actions/setup-go@v5 @@ -50,7 +50,7 @@ jobs: project: name: Project Checks if: github.repository == 'containerd/plugin' - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 5 steps: @@ -71,9 +71,13 @@ jobs: tests: name: Tests - runs-on: ubuntu-22.04 + runs-on: ${{ matrix.os }} timeout-minutes: 5 + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + steps: - uses: actions/checkout@v4 with: