From 75ba234726f8fc018be2a7f710ee5f2b33d5ad43 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 22 Nov 2025 11:01:08 +0000 Subject: [PATCH] chore(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/check-urls.yml | 6 +++--- .github/workflows/fpb-lint.yml | 2 +- .github/workflows/rtl-ltr-linter.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check-urls.yml b/.github/workflows/check-urls.yml index e1be2556df555..0fed86d95c334 100644 --- a/.github/workflows/check-urls.yml +++ b/.github/workflows/check-urls.yml @@ -37,7 +37,7 @@ jobs: echo "fetch_depth=0" >> $GITHUB_OUTPUT fi - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: ${{ steps.set-params.outputs.fetch-depth }} - name: Get changed files @@ -75,7 +75,7 @@ jobs: steps: - name: Checkout if: ${{ endsWith(matrix.file, '.yml') || endsWith(matrix.file, '.md') }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: ${{ needs.get-changed-files.outputs.fetch-depth }} - name: Setup Ruby v2.6 @@ -119,7 +119,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout # for having the sources of the local action - uses: actions/checkout@v5 + uses: actions/checkout@v6 # download and unzip the ab-results-*.json generated by job-matrix: check-urls - name: Download artifacts uses: actions/download-artifact@v6 diff --git a/.github/workflows/fpb-lint.yml b/.github/workflows/fpb-lint.yml index b0aa5f827081b..db56d2d240209 100644 --- a/.github/workflows/fpb-lint.yml +++ b/.github/workflows/fpb-lint.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Use Node.js uses: actions/setup-node@v6 with: diff --git a/.github/workflows/rtl-ltr-linter.yml b/.github/workflows/rtl-ltr-linter.yml index 40ac341dffe4e..dc8a659c4f0a1 100644 --- a/.github/workflows/rtl-ltr-linter.yml +++ b/.github/workflows/rtl-ltr-linter.yml @@ -12,7 +12,7 @@ jobs: steps: # Checkout the repository code - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Fetch the full history of 'main' for accurate git diff in PRs - name: Fetch all history for main