From dd8f73b18f7360e2d32396b68e01b4f45f380a13 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Mon, 11 Aug 2025 22:12:42 -0400 Subject: [PATCH] Use recommended `runs-on` labels --- .github/workflows/cli.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cli.yml b/.github/workflows/cli.yml index 4d25f01084..5cccbd5a07 100644 --- a/.github/workflows/cli.yml +++ b/.github/workflows/cli.yml @@ -14,7 +14,7 @@ jobs: test: strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-24.04, macos-15, windows-2025] go: [stable, oldstable] name: ${{ matrix.os }} @ Go ${{ matrix.go }} runs-on: ${{ matrix.os }}