⬆️ Bump actions/checkout from 4 to 5 #63
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Copyright (C) 2020-2024 Arm Limited or its affiliates and Contributors. All rights reserved. | |
| # SPDX-License-Identifier: Apache-2.0 | |
| # | |
| name: CI | |
| concurrency: | |
| group: ${{ github.repository }}-${{ github.workflow }}-${{ inputs.branch || github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: [ main ] | |
| tags-ignore: | |
| - '**' | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| publish-project-action-test: | |
| name: Publish Action Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 # this repository | |
| - uses: actions/checkout@v5 # test repository | |
| with: | |
| repository: Arm-Examples/Hello_B-U585I-IOT02A | |
| path: test | |
| - uses: ./ | |
| name: Publish Project Action | |
| with: | |
| branch: main | |
| project-file: ./test/hello.csolution.yml | |
| dry-run: true | |
| CMSIS_API_KEY: ${{ secrets.CMSIS_API_KEY }} |