From 8e6384883192e22e6e086515f05c0a71801b8666 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Tue, 12 Apr 2022 17:16:36 +0100 Subject: [PATCH] Updated Windows CI runner to `windows-latest` closes https://github.com/TryGhost/node-sqlite3/issues/1565 - now `node-gyp` has been updated to 8.x, we should now support building on Visual Studio 22 - this was the blocker from using `windows-latest`, so we can now update to that --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc8212f60..81c96b5e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: os: - macos-latest - ubuntu-latest - - windows-2019 + - windows-latest architecture: - x64 node: @@ -27,7 +27,7 @@ jobs: - 16 - 17 include: - - os: windows-2019 + - os: windows-latest node: 16 architecture: x86 name: ${{ matrix.os }} ${{ matrix.architecture }} - Node ${{ matrix.node }}