From 837f9c157bf193a16aa63b786d2f45079dad4775 Mon Sep 17 00:00:00 2001 From: ShawnCZek Date: Fri, 17 May 2024 20:06:22 +0200 Subject: [PATCH] Use Node v20 for CI/CD --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/publish.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a7630e1..6d6d81b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,12 +17,12 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - - name: Install Node v18 - uses: actions/setup-node@v3 + - name: Install Node v20 + uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: npm - name: Install Dependencies diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 546c750..c783801 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,12 +13,12 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - - name: Install Node v18 - uses: actions/setup-node@v3 + - name: Install Node v20 + uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: npm registry-url: https://registry.npmjs.org