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 }}