From 858856aa680aec56ab6519f569ba13a66e90ffb1 Mon Sep 17 00:00:00 2001 From: Iddan Aaronsohn Date: Mon, 30 Dec 2024 00:42:32 +0100 Subject: [PATCH] Website: Update node version in ci --- .github/workflows/website.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index a6298d9d..1027bc69 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -11,10 +11,10 @@ jobs: if: github.event_name != 'push' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: 16.x + node-version: 20 - name: Test Build run: | yarn install --frozen-lockfile; @@ -25,10 +25,10 @@ jobs: if: github.event_name != 'pull_request' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: 16.x + node-version: 20 - uses: webfactory/ssh-agent@v0.5.0 with: ssh-private-key: ${{ secrets.GH_PAGES_DEPLOY }}