From 39ed753b2d45a9ece65fdf64c14bc2c79cd5ab06 Mon Sep 17 00:00:00 2001 From: Marco Link Date: Sat, 28 Sep 2024 10:05:22 +0200 Subject: [PATCH] chore: bump node to v20 for ci action (#4) --- .github/workflows/ci.yml | 2 +- .github/workflows/deploy.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a805eb..ac5a13e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install dependencies run: npm install diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 48da5c5..9a4d3f6 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,10 +24,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Use Node.js 18.x + - name: Use Node.js 20.x uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 20.x - name: Install Dependencies run: |