From fc0462c0d5bd70a2a986b3cf10485f1ece772ae4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Mar 2026 01:10:50 +0000 Subject: [PATCH] ci: bump the actions group with 2 updates Bumps the actions group with 2 updates: [pnpm/action-setup](https://github.com/pnpm/action-setup) and [dorny/test-reporter](https://github.com/dorny/test-reporter). Updates `pnpm/action-setup` from 4 to 5 - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](https://github.com/pnpm/action-setup/compare/v4...v5) Updates `dorny/test-reporter` from 2 to 3 - [Release notes](https://github.com/dorny/test-reporter/releases) - [Changelog](https://github.com/dorny/test-reporter/blob/main/CHANGELOG.md) - [Commits](https://github.com/dorny/test-reporter/compare/v2...v3) --- updated-dependencies: - dependency-name: pnpm/action-setup dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: dorny/test-reporter dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/qa-benchmark.yml | 2 +- .github/workflows/test.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/qa-benchmark.yml b/.github/workflows/qa-benchmark.yml index e410a25d..41660c87 100644 --- a/.github/workflows/qa-benchmark.yml +++ b/.github/workflows/qa-benchmark.yml @@ -25,7 +25,7 @@ jobs: fetch-depth: 0 - name: Install pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v5 - name: Setup Node uses: actions/setup-node@v6 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a3c33b9d..6742d9ae 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,7 +45,7 @@ jobs: # 测试图形化报告 - name: Publish Test Report - uses: dorny/test-reporter@v2 + uses: dorny/test-reporter@v3 if: always() || failure() with: name: Pester Tests (${{ matrix.os }}) @@ -65,7 +65,7 @@ jobs: # 1. 安装 pnpm - name: Install pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v5 # 2. 安装 Node 并开启 pnpm 缓存 (这是 Monorepo 速度的关键) - name: Setup Node @@ -89,7 +89,7 @@ jobs: # 5. 上传 Vitest 报告 - name: Report Vitest - uses: dorny/test-reporter@v2 + uses: dorny/test-reporter@v3 if: success() || failure() with: name: Vitest Results