From a1ec3710e9870d62f6dbc73d1f178f493227e215 Mon Sep 17 00:00:00 2001 From: Guillaume Grossetie Date: Tue, 28 Oct 2025 02:41:06 +0000 Subject: [PATCH] chore(deps): update github actions --- .github/workflows/ci.yml | 6 +++--- .github/workflows/release.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1f90c48..ccb0bf05 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,11 +15,11 @@ jobs: os: [ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Use Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: '22' + node-version: '24' - run: npm ci --foreground-scripts - run: npm run check if: ${{ matrix.os == 'ubuntu-latest' }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index de7eab6f..1c2fa12c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,11 +19,11 @@ jobs: environment: releases 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: '22' + node-version: '24' - name: Install dependencies run: npm ci - name: Setup release environment