From 1116f69e0fe4fdd81690420016ad5dbd594273fe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 17:37:10 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' 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/Test-Build.yml | 2 +- .github/workflows/Test-Lint.yml | 2 +- .github/workflows/Test-Unit.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Deploy.yml b/.github/workflows/Deploy.yml index e7e80b9..749e270 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@v5 + uses: actions/checkout@v6 # 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 e32fc9f..2d03dac 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@v5 + - uses: actions/checkout@v6 with: ref: ${{env.branch}} fetch-depth: ${{env.depth}} diff --git a/.github/workflows/Test-Build.yml b/.github/workflows/Test-Build.yml index 6e79ce7..9bc1213 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@v5 + - uses: actions/checkout@v6 # 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 b4250bc..508cb9a 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@v5 + - uses: actions/checkout@v6 # 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 3855229..1a39245 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@v5 + uses: actions/checkout@v6 # Set up NodeJS on the build host - name: Set up the Node.JS Runtime