From a817ed72d587d0bcf1afdded7acda6cb19e2367d Mon Sep 17 00:00:00 2001 From: Dominic Griesel Date: Tue, 7 Jul 2026 15:46:57 +0200 Subject: [PATCH] ci: modernize test-and-release workflow to current standards --- .github/workflows/test-and-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index 1a39d9c..ead8c4a 100644 --- a/.github/workflows/test-and-release.yml +++ b/.github/workflows/test-and-release.yml @@ -14,7 +14,7 @@ on: pull_request: {} # Cancel previous PR/branch runs when a new commit is pushed -concurrency: +concurrency: group: ${{ github.ref }} cancel-in-progress: true @@ -25,14 +25,14 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [16.x] # This should be LTS + node-version: [24] steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v7 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: 'npm'