From ec84ed4295a8de07a10e8d4187c6429fdee49296 Mon Sep 17 00:00:00 2001 From: Martin Staiger Date: Thu, 2 Apr 2026 18:25:08 +0200 Subject: [PATCH] Upgrade GitHub Actions to use v4 for checkout and setup-node --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 862c0d4..f2f2228 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,9 +8,9 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: '22' + node-version: '24' - run: npm ci - run: npm run build