From d92feb6c61ab662d21bed4546b5d19e9c9decaec Mon Sep 17 00:00:00 2001 From: Max Scholz Date: Thu, 27 Jun 2024 15:54:11 +0200 Subject: [PATCH] updated workflows --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5e17ce7..b62a70b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,6 +1,6 @@ name: CI Tests env: - NODE_VERSION: 14 + NODE_VERSION: 20 on: push: paths-ignore: @@ -8,7 +8,7 @@ on: jobs: executing-tests: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Checkout repository @@ -17,7 +17,7 @@ jobs: persist-credentials: false - name: Use Node.js Version - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ env.NODE_VERSION }} registry-url: 'https://npm.pkg.github.com/'