From b8e1f16d7ea93a068389118606f54df8b0604c58 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 04:32:38 +0000 Subject: [PATCH] Bump the all-actions group across 1 directory with 2 updates Bumps the all-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-node](https://github.com/actions/setup-node). Updates `actions/checkout` from 6 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/v6...v7) Updates `actions/setup-node` from 6 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 12 ++++++------ .github/workflows/publish.yml | 6 +++--- .github/workflows/version.yml | 4 ++-- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5fce024..42b782b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,9 +18,9 @@ jobs: matrix: node-version: ["24", "25"] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Use Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: ${{ matrix.node-version }}.x cache: "npm" @@ -39,14 +39,14 @@ jobs: package-manager: ["npm", "yarn", "pnpm"] steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install pnpm uses: pnpm/action-setup@v6 if: matrix.package-manager == 'pnpm' with: version: "10" - name: Use Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: 24.x cache: "npm" @@ -83,14 +83,14 @@ jobs: env: NODE_DEBUG: create-ts-node steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: pnpm/action-setup@v6 name: Install pnpm if: matrix.package-manager == 'pnpm' with: version: "10" - name: Use Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: ${{ matrix.node-version }}.x - run: ${{ matrix.package-manager }} install diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5028670..d633660 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,9 +12,9 @@ jobs: name: Publish package runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Use Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: 24 cache: "npm" @@ -36,7 +36,7 @@ jobs: version: "10" if: matrix.package-manager == 'pnpm' - name: Use Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: 24 - name: Create project diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index 9f1cc93..4d61225 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -19,9 +19,9 @@ jobs: version: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Use Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: 24.x cache: npm