From cb1d0bfb162c22176a49154f26cbddf541c8360a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 3 Sep 2026 11:14:43 +0000 Subject: [PATCH] build(deps): bump the major-updates group with 6 updates Bumps the major-updates group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `7` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `7` | | [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `5` | `8` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `9` | Updates `actions/checkout` from 4 to 7 - [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...v7) Updates `actions/setup-node` from 4 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v7) Updates `peter-evans/create-pull-request` from 5 to 8 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v5...v8) 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/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v8) 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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major-updates - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major-updates - dependency-name: peter-evans/create-pull-request dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major-updates - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major-updates - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major-updates - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major-updates ... Signed-off-by: dependabot[bot] --- .github/workflows/bundle-size-badge.yml | 4 ++-- .github/workflows/changelog.yml | 6 +++--- .github/workflows/ci.yml | 12 ++++++------ .github/workflows/coverage-badge.yml | 4 ++-- .github/workflows/deploy.yml | 14 +++++++------- .github/workflows/link-check.yml | 6 +++--- .github/workflows/preview-deploy.yml | 12 ++++++------ 7 files changed, 29 insertions(+), 29 deletions(-) diff --git a/.github/workflows/bundle-size-badge.yml b/.github/workflows/bundle-size-badge.yml index fb7737a..0baea0d 100644 --- a/.github/workflows/bundle-size-badge.yml +++ b/.github/workflows/bundle-size-badge.yml @@ -16,11 +16,11 @@ jobs: # Only run on main branch, and only if CI workflow succeeded if: github.event.workflow_run.conclusion == 'success' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: ref: ${{ github.event.workflow_run.head_branch }} - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v7 with: node-version: 20 cache: 'npm' diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index a1da9af..8040113 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -16,11 +16,11 @@ jobs: changelog: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v7 with: node-version-file: '.nvmrc' cache: 'npm' @@ -31,7 +31,7 @@ jobs: run: npm run changelog - name: Create Pull Request - uses: peter-evans/create-pull-request@v5 + uses: peter-evans/create-pull-request@v8 with: commit-message: 'docs: update CHANGELOG for ${{ inputs.version }}' title: 'docs: update CHANGELOG for ${{ inputs.version }}' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a96e10d..a86fceb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,10 +23,10 @@ jobs: contents: read checks: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v7 with: node-version-file: '.nvmrc' cache: 'npm' @@ -41,13 +41,13 @@ jobs: - run: npm run lint - run: npm test - run: npm run test:coverage - - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4 + - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: coverage-report path: coverage/ - run: npx playwright install --with-deps - run: npm run test:e2e - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 if: always() with: name: playwright-report @@ -59,7 +59,7 @@ jobs: run: npm run build env: ANALYZE: true - - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4 + - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 if: always() with: name: bundle-analysis-report @@ -69,7 +69,7 @@ jobs: run: npm run build:storybook - name: Run visual regression tests run: npm run test:visual - - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4 + - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 if: always() with: name: visual-regression-report diff --git a/.github/workflows/coverage-badge.yml b/.github/workflows/coverage-badge.yml index 9c91f3d..ed4eb39 100644 --- a/.github/workflows/coverage-badge.yml +++ b/.github/workflows/coverage-badge.yml @@ -16,12 +16,12 @@ jobs: # Only run on main branch, and only if CI workflow succeeded if: github.event.workflow_run.conclusion == 'success' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: ref: ${{ github.event.workflow_run.head_branch }} - name: Download coverage report - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: coverage-report path: coverage/ diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c525baa..4c6fcac 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -18,9 +18,9 @@ jobs: build-id: ${{ steps.build.outputs.build-id }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v7 with: node-version: 20 cache: 'npm' @@ -41,7 +41,7 @@ jobs: echo "build-id=$(date +%s)" >> $GITHUB_OUTPUT - name: Upload build artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: nextjs-build-${{ steps.build.outputs.build-id }} path: .next @@ -57,9 +57,9 @@ jobs: environment: production steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v7 with: node-version: 20 cache: 'npm' @@ -68,7 +68,7 @@ jobs: run: npm ci - name: Download build artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: nextjs-build-${{ needs.build.outputs.build-id }} path: .next @@ -103,7 +103,7 @@ jobs: - name: Create deployment status if: steps.deploy.outputs.deployed == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const deployment = await github.rest.repos.createDeployment({ diff --git a/.github/workflows/link-check.yml b/.github/workflows/link-check.yml index ae8c455..24e1aee 100644 --- a/.github/workflows/link-check.yml +++ b/.github/workflows/link-check.yml @@ -21,7 +21,7 @@ jobs: if: | github.event_name != 'schedule' || github.event_name == 'schedule' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Check internal markdown links (relative paths only) uses: gaurav-nelson/github-action-markdown-link-check@v1 with: @@ -36,7 +36,7 @@ jobs: # Run external link checks on schedule only to avoid flakiness blocking PRs if: github.event_name == 'schedule' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Check external markdown links with retries uses: gaurav-nelson/github-action-markdown-link-check@v1 with: @@ -46,7 +46,7 @@ jobs: base-branch: main - name: Create issue on failure if: failure() - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | diff --git a/.github/workflows/preview-deploy.yml b/.github/workflows/preview-deploy.yml index 9247210..45a7ab2 100644 --- a/.github/workflows/preview-deploy.yml +++ b/.github/workflows/preview-deploy.yml @@ -31,12 +31,12 @@ jobs: fi - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: ref: ${{ github.event.pull_request.head.sha }} - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v7 with: node-version: 20 cache: 'npm' @@ -93,7 +93,7 @@ jobs: - name: Comment on PR - Fork PR if: steps.fork-check.outputs.is-fork == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | github.rest.issues.createComment({ @@ -105,7 +105,7 @@ jobs: - name: Comment on PR - Preview Ready if: steps.fork-check.outputs.is-fork == 'false' && steps.vercel.outputs.deployment-success == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | github.rest.issues.createComment({ @@ -117,7 +117,7 @@ jobs: - name: Comment on PR - Deployment Failed if: steps.fork-check.outputs.is-fork == 'false' && steps.vercel.outputs.deployment-success == 'false' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | github.rest.issues.createComment({ @@ -129,7 +129,7 @@ jobs: - name: Comment on PR - Credentials Missing if: steps.fork-check.outputs.is-fork == 'false' && steps.vercel.outputs.deployment-url == 'CREDENTIALS_MISSING' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | github.rest.issues.createComment({