From 052a9aeb1a8010655ed0a1c1c6e44849de582256 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 02:03:55 +0000 Subject: [PATCH] build(deps): 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/lint-files.yml | 4 ++-- .github/workflows/scan-code.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint-files.yml b/.github/workflows/lint-files.yml index 9ddb277..9d6deb4 100644 --- a/.github/workflows/lint-files.yml +++ b/.github/workflows/lint-files.yml @@ -55,7 +55,7 @@ jobs: # https://github.com/actions/checkout - name: Checkout repository (no ref input) - uses: actions/checkout@v5 + uses: actions/checkout@v6 if: ${{ inputs.ref == '' }} with: # Full git history is needed to get a proper @@ -64,7 +64,7 @@ jobs: - name: Checkout repository (with ref input) - uses: actions/checkout@v5 + uses: actions/checkout@v6 if: ${{ inputs.ref != '' }} with: ref: '${{ inputs.ref }}' diff --git a/.github/workflows/scan-code.yml b/.github/workflows/scan-code.yml index 74221f1..eeee48c 100644 --- a/.github/workflows/scan-code.yml +++ b/.github/workflows/scan-code.yml @@ -63,7 +63,7 @@ jobs: # https://github.com/actions/checkout - name: Checkout repository (no ref input) - uses: actions/checkout@v5 + uses: actions/checkout@v6 if: ${{ inputs.ref == '' }} with: # Only a single commit is fetched by default, for the ref/SHA that @@ -73,7 +73,7 @@ jobs: - name: Checkout repository (with ref input) - uses: actions/checkout@v5 + uses: actions/checkout@v6 if: ${{ inputs.ref != '' }} with: ref: '${{ inputs.ref }}'