From eff7b149e9c74e8f2ae16b748630439d19be127e Mon Sep 17 00:00:00 2001 From: ringabout <43030857+ringabout@users.noreply.github.com> Date: Sat, 17 Aug 2024 21:42:37 +0800 Subject: [PATCH] CI always uses latest OS (#17) * CI always uses latest OS * Apply suggestions from code review --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed7fb34..281a300 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,13 +24,13 @@ jobs: include: - target: os: linux - builder: ubuntu-20.04 + builder: ubuntu-latest - target: os: macos - builder: macos-11 + builder: macos-12 - target: os: windows - builder: windows-2019 + builder: windows-latest name: '${{ matrix.target.os }}-${{ matrix.target.cpu }} (${{ matrix.branch }})' runs-on: ${{ matrix.builder }}