From 100165ae3080920f556a96148ab3ee687b89173d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 May 2026 02:11:18 +0000 Subject: [PATCH] chore(deps): bump the github-actions group with 9 updates Bumps the github-actions group with 9 updates: | Package | From | To | | --- | --- | --- | | [actions/github-script](https://github.com/actions/github-script) | `7` | `9` | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/configure-pages](https://github.com/actions/configure-pages) | `5` | `6` | | [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) | `3` | `5` | | [actions/deploy-pages](https://github.com/actions/deploy-pages) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [kachick/wait-other-jobs](https://github.com/kachick/wait-other-jobs) | `3` | `4` | Updates `actions/github-script` from 7 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v9) Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) Updates `actions/configure-pages` from 5 to 6 - [Release notes](https://github.com/actions/configure-pages/releases) - [Commits](https://github.com/actions/configure-pages/compare/v5...v6) Updates `actions/upload-pages-artifact` from 3 to 5 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](https://github.com/actions/upload-pages-artifact/compare/v3...v5) Updates `actions/deploy-pages` from 4 to 5 - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](https://github.com/actions/deploy-pages/compare/v4...v5) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) Updates `kachick/wait-other-jobs` from 3 to 4 - [Release notes](https://github.com/kachick/wait-other-jobs/releases) - [Changelog](https://github.com/kachick/wait-other-jobs/blob/main/CHANGELOG.md) - [Commits](https://github.com/kachick/wait-other-jobs/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/configure-pages dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-pages-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/deploy-pages dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: kachick/wait-other-jobs dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/claude-code-review.yml | 10 +++++----- .github/workflows/docs.yml | 8 ++++---- .github/workflows/e2e-test.yml | 8 ++++---- .github/workflows/gitleaks-check.yml | 2 +- .github/workflows/pr-checks.yml | 6 +++--- .github/workflows/pr-gate.yml | 2 +- .github/workflows/publish.yml | 8 ++++---- .github/workflows/rwf-burn-in.yml | 8 ++++---- .github/workflows/vitest-ct.yml | 6 +++--- 9 files changed, 29 insertions(+), 29 deletions(-) diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml index 2ec4b3a..e3cc9c0 100644 --- a/.github/workflows/claude-code-review.yml +++ b/.github/workflows/claude-code-review.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Validate PR context id: validate - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ github.token }} script: | @@ -50,7 +50,7 @@ jobs: - name: Get PR details id: pr - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ github.token }} script: | @@ -97,7 +97,7 @@ jobs: - name: Post skip message if: steps.skip.outputs.skip == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ github.token }} script: | @@ -110,7 +110,7 @@ jobs: - name: Acknowledge review request if: steps.skip.outputs.skip != 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ github.token }} script: | @@ -125,7 +125,7 @@ jobs: - name: Checkout PR branch if: steps.skip.outputs.skip != 'true' - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: refs/pull/${{ steps.pr.outputs.number }}/merge fetch-depth: 0 diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index b1592da..50db349 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 # Full history for lastUpdated timestamps @@ -34,7 +34,7 @@ jobs: install-command: npm ci - name: Setup Pages - uses: actions/configure-pages@v5 + uses: actions/configure-pages@v6 - name: Build with VitePress env: @@ -42,7 +42,7 @@ jobs: run: npm run docs:build - name: Upload artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v5 with: path: docs/.vitepress/dist @@ -55,4 +55,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5 diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index 6648cbe..a6e61a7 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -35,7 +35,7 @@ jobs: skip_burn_in: ${{ steps.check_skip_label.outputs.skip_burn_in || 'false' }} steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.head_ref }} @@ -83,7 +83,7 @@ jobs: steps: # Always check out code first before using any local actions - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.head_ref }} @@ -136,7 +136,7 @@ jobs: cp -r test-results/**/*.zip blob-report/trace || true - name: Upload shared blob report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: blob-report-${{ matrix.shardIndex }} @@ -153,7 +153,7 @@ jobs: pull-requests: write # Required for posting PR comments steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Node and Install Dependencies uses: ./.github/actions/install diff --git a/.github/workflows/gitleaks-check.yml b/.github/workflows/gitleaks-check.yml index 0631a92..ad59ddf 100644 --- a/.github/workflows/gitleaks-check.yml +++ b/.github/workflows/gitleaks-check.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index f7caa65..5272d94 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -15,15 +15,15 @@ jobs: pr-check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version-file: '.nvmrc' cache: 'npm' - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.npm key: npm-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/pr-gate.yml b/.github/workflows/pr-gate.yml index 1ae146d..1b86db1 100644 --- a/.github/workflows/pr-gate.yml +++ b/.github/workflows/pr-gate.yml @@ -12,7 +12,7 @@ jobs: name: gate runs-on: ubuntu-latest steps: - - uses: kachick/wait-other-jobs@v3 + - uses: kachick/wait-other-jobs@v4 with: skip-same-workflow: true skip-list: | diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 741fe2e..d24e1b9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -29,13 +29,13 @@ jobs: steps: # 1. Checkout the repository - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 # Needed for version calculation # 2. Setup Node.js with caching - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version-file: '.nvmrc' # Verified correct for v4 registry-url: 'https://registry.npmjs.org' @@ -124,7 +124,7 @@ jobs: # 9. Setup Node for npmjs.org and publish - name: Setup Node.js for npmjs.org if: steps.version.outputs.skip != 'true' - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version-file: '.nvmrc' registry-url: 'https://registry.npmjs.org' @@ -156,7 +156,7 @@ jobs: # 10. Setup Node for GitHub Packages and publish - name: Setup Node.js for GitHub Packages if: steps.version.outputs.skip != 'true' - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version-file: '.nvmrc' registry-url: 'https://npm.pkg.github.com' diff --git a/.github/workflows/rwf-burn-in.yml b/.github/workflows/rwf-burn-in.yml index 6ab1fb3..37f53b3 100644 --- a/.github/workflows/rwf-burn-in.yml +++ b/.github/workflows/rwf-burn-in.yml @@ -51,7 +51,7 @@ jobs: steps: # Always check out code first before using any local actions - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: "0" @@ -136,7 +136,7 @@ jobs: # Upload burn-in report on failure for debugging - name: Upload burn-in report if: always() && steps.detect-changed.outputs.changed == 'true' && steps.burn-in-step.outcome == 'failure' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: burn-in-report path: | @@ -148,7 +148,7 @@ jobs: - name: Resolve artifact URL id: resolve-url if: always() && steps.detect-changed.outputs.changed == 'true' && steps.burn-in-step.outcome == 'failure' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const artifactName = 'burn-in-report'; @@ -170,7 +170,7 @@ jobs: - name: Comment burn-in result on PR if: always() && github.event_name == 'pull_request' && steps.detect-changed.outputs.changed == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const burnInOutcome = '${{ steps.burn-in-step.outcome }}'; diff --git a/.github/workflows/vitest-ct.yml b/.github/workflows/vitest-ct.yml index eb49b40..0ff7112 100644 --- a/.github/workflows/vitest-ct.yml +++ b/.github/workflows/vitest-ct.yml @@ -19,9 +19,9 @@ jobs: timeout-minutes: 10 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version-file: '.nvmrc' cache: 'npm' @@ -44,7 +44,7 @@ jobs: - name: Cache Playwright browsers id: pw-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/ms-playwright key: playwright-${{ runner.os }}-${{ steps.pw-version.outputs.version }}