Skip to content

Commit 3f6fc4b

Browse files
dependabot[bot]xiaoxiang781216
authored andcommitted
build(deps): 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](actions/checkout@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] <support@github.com>
1 parent 6028b42 commit 3f6fc4b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
echo "apps_ref=$APPS_REF" >> $GITHUB_OUTPUT
8686
8787
- name: Checkout nuttx repo
88-
uses: actions/checkout@v5
88+
uses: actions/checkout@v6
8989
with:
9090
repository: apache/nuttx
9191
ref: ${{ steps.gittargets.outputs.os_ref }}
@@ -95,7 +95,7 @@ jobs:
9595
run: git -C sources/nuttx fetch --tags
9696

9797
- name: Checkout apps repo
98-
uses: actions/checkout@v5
98+
uses: actions/checkout@v6
9999
with:
100100
repository: apache/nuttx-apps
101101
ref: ${{ steps.gittargets.outputs.apps_ref }}
@@ -319,7 +319,7 @@ jobs:
319319
run:
320320
shell: msys2 {0}
321321
steps:
322-
- uses: actions/checkout@v5
322+
- uses: actions/checkout@v6
323323
- uses: msys2/setup-msys2@v2
324324
with:
325325
msystem: MSYS
@@ -393,7 +393,7 @@ jobs:
393393
if: ${{ needs.msvc-Arch.outputs.skip_all_builds != '1' }}
394394
runs-on: windows-latest
395395
steps:
396-
- uses: actions/checkout@v5
396+
- uses: actions/checkout@v6
397397
# Set up Python environment and install kconfiglib
398398
- name: Set up Python and install kconfiglib
399399
uses: actions/setup-python@v6

.github/workflows/check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828

2929
steps:
3030
- name: Checkout nuttx repo
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232
with:
3333
repository: apache/nuttx
3434
path: nuttx
3535
fetch-depth: 0
3636

3737
- name: Checkout apps repo
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939
with:
4040
repository: apache/nuttx-apps
4141
path: apps

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929

3030
- name: Assign labels based on paths
3131
uses: actions/labeler@main

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: Lint
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323
- run: mkdir super-linter.report

0 commit comments

Comments
 (0)