From 2dd9b4732afd464eebb0d4e12c6e13ea00729d68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E5=A2=A8?= Date: Sun, 7 Dec 2025 15:32:20 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E5=8D=87=E7=BA=A7=20GitHub=20Actions=20?= =?UTF-8?q?=E6=89=93=E5=8C=85=E4=BE=9D=E8=B5=96=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c214124..02c1655 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,11 +12,11 @@ jobs: name: 'Build-Test' steps: - name: Checkout - 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' - name: Install Deps run: yarn install - name: Build @@ -27,18 +27,18 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node_version: ['22'] + node_version: ['24'] include: - os: macos-latest - node_version: 22 + node_version: 24 - os: windows-latest - node_version: 22 + node_version: 24 name: 'Demo-Build-Test: node-${{ matrix.node_version }}, ${{ matrix.os }}' steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set node version to ${{ matrix.node_version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node_version }} - name: Package Install deps