From 79de13fd83d4efbd5e4eb44e207207dbcf77ae1e Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Mon, 29 Jul 2024 11:26:19 +0200 Subject: [PATCH] upgrade --- .github/workflows/build.yml | 4 ++-- .github/workflows/test.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 64733259..3821bae6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,10 +28,10 @@ jobs: - run: git config --global core.autocrlf false - name: Check out Git repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Node.js, NPM and Yarn - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20 cache: 'yarn' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ef656630..820ae541 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,11 +15,11 @@ jobs: # Windows fix. See https://github.com/actions/checkout/issues/226 - run: git config --global core.autocrlf false - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: 'yarn' - run: yarn install --immutable