From 6984addd5c3f8945f16b232199996cdde2f87f82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 07:12:24 +0000 Subject: [PATCH] :arrow_up: 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/ci.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 694fff9..2fa3c93 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,8 +21,8 @@ jobs: name: Publish Action Test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 # this repository - - uses: actions/checkout@v5 # test repository + - uses: actions/checkout@v6 # this repository + - uses: actions/checkout@v6 # test repository with: repository: Arm-Examples/Hello_B-U585I-IOT02A path: test diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0550790..c3bb3a4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: outputs: changes: ${{ steps.check.outputs.changes }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Check if changes directory contains files id: check run: | @@ -38,7 +38,7 @@ jobs: - check-for-changes if: needs.check-for-changes.outputs.changes steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-python@v6 with: python-version: ${{ env.python_version }}