From 2b8b844b389991f1204d381ea392ed1b30bb42c0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 08:59:34 +0000 Subject: [PATCH] Bump actions/checkout in the actions group across 1 directory Bumps the actions group with 1 update in the / directory: [actions/checkout](https://github.com/actions/checkout). 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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/checks.yml | 8 ++++---- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/dependency-review.yml | 2 +- .github/workflows/npm-publish.yml | 2 +- .github/workflows/test-template.yml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index ed6b40a04..1d1b48d7a 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -31,7 +31,7 @@ jobs: has_testcontainers: ${{ steps.detect.outputs.has_testcontainers }} steps: - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 - id: detect @@ -67,7 +67,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Code checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Node and Dependencies id: npm-install-modules uses: ./.github/actions/npm-setup @@ -93,7 +93,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Code checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Node and Dependencies id: npm-install uses: ./.github/actions/npm-setup @@ -122,7 +122,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Code checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Node ${{ matrix.node-version }} and Dependencies uses: ./.github/actions/npm-setup with: diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 10969a7a7..544718fe1 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Initialize CodeQL uses: github/codeql-action/init@v4 with: diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 757d1a370..8e3efdf78 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: "Checkout Repository" - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: "Dependency Review" uses: actions/dependency-review-action@v5 with: diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 6d0213fea..ef5c224a0 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -16,7 +16,7 @@ jobs: publish: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: ${{ github.event_name == 'release' && 'main' || github.ref }} diff --git a/.github/workflows/test-template.yml b/.github/workflows/test-template.yml index 8e90a34d1..e7ec83745 100644 --- a/.github/workflows/test-template.yml +++ b/.github/workflows/test-template.yml @@ -20,7 +20,7 @@ jobs: runs-on: ${{ inputs.runner }} steps: - name: Code checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Podman setup if: ${{ inputs.container-runtime == 'podman' }}