From 872e6961cb9337afb3c9a09022a8aefaf140f7ff Mon Sep 17 00:00:00 2001 From: FrancescoBorzi Date: Tue, 26 Dec 2023 02:14:36 +0100 Subject: [PATCH] misc/ GitHub actions: node 20, ubuntu 22.04 + pin versions --- .github/workflows/macos.yml | 4 ++-- .github/workflows/ubuntu.yml | 4 ++-- .github/workflows/windows.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 41481ec3f..ed0e1c4b2 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -22,10 +22,10 @@ jobs: build: strategy: matrix: - node-version: [18.16] + node-version: [20] # The type of runner that the job will run on - runs-on: macos-latest + runs-on: macos-12 steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 6f82d9034..69e63d2fc 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -19,10 +19,10 @@ jobs: build: strategy: matrix: - node-version: [18.16] + node-version: [20] # The type of runner that the job will run on - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 1034c506c..2b392899b 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -22,10 +22,10 @@ jobs: build: strategy: matrix: - node-version: [18.16] + node-version: [20] # The type of runner that the job will run on - runs-on: windows-latest + runs-on: windows-2022 steps: - uses: actions/checkout@v3