From ad963b08ea617ac58be9d769cf058ca44aabf353 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 11:15:09 +0000 Subject: [PATCH] :arrow_up: Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 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/v4...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 | 8 ++++---- .github/workflows/release.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e44a9a..dca3701 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,8 +21,8 @@ jobs: name: Integration Tests 1 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 # this repo - - uses: actions/checkout@v4 # test repo + - uses: actions/checkout@v6 # this repo + - uses: actions/checkout@v6 # test repo with: repository: Arm-Examples/Hello_LPCXpresso55S69 path: test @@ -38,8 +38,8 @@ jobs: name: Integration Tests 2 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 # this repo - - uses: actions/checkout@v4 # test repo + - uses: actions/checkout@v6 # this repo + - uses: actions/checkout@v6 # test repo with: repository: Arm-Examples/EW2024_CMSIS-Toolbox path: test2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 51cd153..809bf1b 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@v4 + - 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@v4 + - uses: actions/checkout@v6 - uses: actions/setup-python@v5 with: python-version: ${{ env.python_version }}