From 0c7aeec304c35424a265227b0f75784f1590b05f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jul 2026 17:47:45 +0000 Subject: [PATCH] Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/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 ... Signed-off-by: dependabot[bot] --- .github/workflows/Deploy.yml | 2 +- .github/workflows/Security-AdvancedSecretScan.yml | 2 +- .github/workflows/Security-Reachability.yaml | 2 +- .github/workflows/Test-Build.yml | 2 +- .github/workflows/Test-Lint.yml | 2 +- .github/workflows/Test-Unit.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/Deploy.yml b/.github/workflows/Deploy.yml index 5a82827..a20f5a5 100644 --- a/.github/workflows/Deploy.yml +++ b/.github/workflows/Deploy.yml @@ -54,7 +54,7 @@ jobs: steps: # Checks-out the repository under $GITHUB_WORKSPACE - name: Clone Repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Set up NodeJS on the build host with caching support to optimize execution - name: Setup Node.JS Runtime diff --git a/.github/workflows/Security-AdvancedSecretScan.yml b/.github/workflows/Security-AdvancedSecretScan.yml index 4fee182..b258c43 100644 --- a/.github/workflows/Security-AdvancedSecretScan.yml +++ b/.github/workflows/Security-AdvancedSecretScan.yml @@ -71,7 +71,7 @@ jobs: fi # Downloads the repo at the specified depth calculated previously - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: ${{env.branch}} fetch-depth: ${{env.depth}} diff --git a/.github/workflows/Security-Reachability.yaml b/.github/workflows/Security-Reachability.yaml index c4b7e49..76596a8 100644 --- a/.github/workflows/Security-Reachability.yaml +++ b/.github/workflows/Security-Reachability.yaml @@ -38,7 +38,7 @@ jobs: steps: # Downloads the repo at the specified depth calculated previously - name: Clone Repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: # For PRs, fetch one additional commit for proper diff analysis fetch-depth: ${{ github.event_name == 'pull_request' && 2 || 0 }} diff --git a/.github/workflows/Test-Build.yml b/.github/workflows/Test-Build.yml index aaa6d69..e69c26a 100644 --- a/.github/workflows/Test-Build.yml +++ b/.github/workflows/Test-Build.yml @@ -31,7 +31,7 @@ jobs: # Set of execution steps to perform steps: # Checks-out your repository under $GITHUB_WORKSPACE - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 # Set up NodeJS on the build host - name: Setup Node.JS Environment diff --git a/.github/workflows/Test-Lint.yml b/.github/workflows/Test-Lint.yml index eec2dd6..03845f4 100644 --- a/.github/workflows/Test-Lint.yml +++ b/.github/workflows/Test-Lint.yml @@ -31,7 +31,7 @@ jobs: # Set of steps to run to lint the project steps: # Checks-out your repository under $GITHUB_WORKSPACE - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 # Set up NodeJS on the build host - name: Setup Node.js environment diff --git a/.github/workflows/Test-Unit.yml b/.github/workflows/Test-Unit.yml index 4cff698..b0c269d 100644 --- a/.github/workflows/Test-Unit.yml +++ b/.github/workflows/Test-Unit.yml @@ -32,7 +32,7 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE - name: Download Source Code - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Set up NodeJS on the build host - name: Set up the Node.JS Runtime