From e6489d1577bf949760d6f0cc824b59087a662761 Mon Sep 17 00:00:00 2001 From: Jozef Izso Date: Wed, 8 Oct 2025 17:26:49 +0200 Subject: [PATCH] Update actions to latest version --- .github/workflows/release.yml | 6 +++--- .github/workflows/tests-cli.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bee0843..8461ae7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,11 +9,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v6 with: - node-version: '20' + node-version: '24' registry-url: 'https://registry.npmjs.org' - run: npm ci diff --git a/.github/workflows/tests-cli.yml b/.github/workflows/tests-cli.yml index 03be34f..0396439 100644 --- a/.github/workflows/tests-cli.yml +++ b/.github/workflows/tests-cli.yml @@ -9,14 +9,14 @@ jobs: strategy: matrix: - node: [ 18, 20 ] + node: [ 18, 20, 22, 24 ] steps: - name: checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: setup node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node }}