Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
echo "apps_ref=$APPS_REF" >> $GITHUB_OUTPUT

- name: Checkout nuttx repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: apache/nuttx
ref: ${{ steps.gittargets.outputs.os_ref }}
Expand All @@ -95,7 +95,7 @@ jobs:
run: git -C sources/nuttx fetch --tags

- name: Checkout apps repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: apache/nuttx-apps
ref: ${{ steps.gittargets.outputs.apps_ref }}
Expand Down Expand Up @@ -319,7 +319,7 @@ jobs:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: msys2/setup-msys2@v2
with:
msystem: MSYS
Expand Down Expand Up @@ -393,7 +393,7 @@ jobs:
if: ${{ needs.msvc-Arch.outputs.skip_all_builds != '1' }}
runs-on: windows-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
# Set up Python environment and install kconfiglib
- name: Set up Python and install kconfiglib
uses: actions/setup-python@v6
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ jobs:

steps:
- name: Checkout nuttx repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: apache/nuttx
path: nuttx
fetch-depth: 0

- name: Checkout apps repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: apache/nuttx-apps
path: apps
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Assign labels based on paths
uses: actions/labeler@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
- run: mkdir super-linter.report
Expand Down
Loading