From 458b8d744a5400880599333669c2999c2d7faa1d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 09:03:20 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 7 Bumps [actions/checkout](https://github.com/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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/increment-version-on-merge.yml | 2 +- .github/workflows/tests.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e443daa..898539a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: ref: ${{ github.head_ref }} fetch-depth: 0 diff --git a/.github/workflows/increment-version-on-merge.yml b/.github/workflows/increment-version-on-merge.yml index 2ce46dd..77e7a7f 100644 --- a/.github/workflows/increment-version-on-merge.yml +++ b/.github/workflows/increment-version-on-merge.yml @@ -36,7 +36,7 @@ jobs: # on a pull_request_target. But we need to be extra careful not to trigger any script # that may operate on PR controlled contents like in the case of npm install. - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: ref: main fetch-depth: 0 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 91965ef..27be7ad 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,7 +20,7 @@ jobs: units: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Setup node env 📦 uses: actions/setup-node@v4 @@ -44,7 +44,7 @@ jobs: steps: - name: Checkout Action - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Should add Summary with no action ID - Act uses: ./ # Uses an action in the root directory