From 13a2206c914ddf2de147a9f811877ceee8b02b76 Mon Sep 17 00:00:00 2001 From: microshine Date: Tue, 17 Sep 2024 12:44:18 +0200 Subject: [PATCH] ci: Update NodeJS versions --- .github/workflows/publish.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0216d51e..20b8e027 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: "18.x" + node-version: "20.x" - name: Install dependencies run: yarn - name: Build diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f11ab60e..93c3169c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - node-version: [18.x, 20.x] + node-version: [20.x, 22.x] steps: - uses: actions/checkout@v3