From 2c23f5f13257abcc2ba75ef06035cfff34df6a1f Mon Sep 17 00:00:00 2001 From: Atsushi Matsuo Date: Sat, 21 Dec 2024 19:33:47 +0900 Subject: [PATCH] Update go.yml to start using Windows Server 2025 image for GitHub Actions hosted runners --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 3683b48..d13243b 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -10,8 +10,8 @@ jobs: strategy: matrix: - # https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners - os: [ 'macos-13', 'macos-14', 'macos-15', 'macos-latest', 'windows-2019', 'windows-2022', 'windows-latest' ] + # https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories + os: [ 'macos-13', 'macos-14', 'macos-15', 'macos-latest', 'windows-2019', 'windows-2022', 'windows-2025', 'windows-latest' ] steps: - uses: actions/checkout@v4