Skip to content

Commit 15377a0

Browse files
authored
Merge branch 'zephyrproject-rtos:main' into WE_maintainer
2 parents 81a00cd + 94a6c1f commit 15377a0

File tree

1,573 files changed

+48560
-9881
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,573 files changed

+48560
-9881
lines changed

.github/workflows/bsim-tests-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Download artifacts
22-
uses: dawidd6/action-download-artifact@4c1e823582f43b179e2cbb49c3eade4e41f992e2 # v10
22+
uses: dawidd6/action-download-artifact@ac66b43f0e6a346234dd65d4d0c8fbb31cb316e5 # v11
2323
with:
2424
run_id: ${{ github.event.workflow_run.id }}
2525

.github/workflows/bug_snapshot.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ on:
1010
workflow_dispatch:
1111
branches: [main]
1212
schedule:
13-
# Run daily at 14:05
14-
- cron: '5 14 * * *'
13+
# Run daily at 00:05
14+
- cron: '5 00 * * *'
1515

1616
permissions:
1717
contents: read

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- v*-branch
88
- collab-*
99
schedule:
10-
- cron: '34 16 * * 3'
10+
- cron: '34 16 * * 6'
1111
pull_request:
1212
branches:
1313
- main
@@ -39,7 +39,7 @@ jobs:
3939
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4040

4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
42+
uses: github/codeql-action/init@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858 # v3.29.0
4343
with:
4444
languages: ${{ matrix.language }}
4545
build-mode: ${{ matrix.build-mode }}
@@ -53,6 +53,6 @@ jobs:
5353
exit 0
5454
5555
- name: Perform CodeQL Analysis
56-
uses: github/codeql-action/analyze@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
56+
uses: github/codeql-action/analyze@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858 # v3.29.0
5757
with:
5858
category: "/language:${{matrix.language}}"

.github/workflows/devicetree_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ${{ matrix.os }}
3030
strategy:
3131
matrix:
32-
python-version: ['3.10', '3.11', '3.12', '3.13']
32+
python-version: ['3.12', '3.13']
3333
os: [ubuntu-22.04, macos-14, windows-2022]
3434
steps:
3535
- name: checkout

.github/workflows/doc-publish-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
steps:
2626
- name: Download artifacts
2727
id: download-artifacts
28-
uses: dawidd6/action-download-artifact@4c1e823582f43b179e2cbb49c3eade4e41f992e2 # v10
28+
uses: dawidd6/action-download-artifact@ac66b43f0e6a346234dd65d4d0c8fbb31cb316e5 # v11
2929
with:
3030
workflow: doc-build.yml
3131
run_id: ${{ github.event.workflow_run.id }}

.github/workflows/doc-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
2828
steps:
2929
- name: Download artifacts
30-
uses: dawidd6/action-download-artifact@4c1e823582f43b179e2cbb49c3eade4e41f992e2 # v10
30+
uses: dawidd6/action-download-artifact@ac66b43f0e6a346234dd65d4d0c8fbb31cb316e5 # v11
3131
with:
3232
workflow: doc-build.yml
3333
run_id: ${{ github.event.workflow_run.id }}

.github/workflows/footprint-tracking.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
name: Footprint Tracking
22

3-
# Run every 12 hours and on tags
43
on:
54
schedule:
6-
- cron: '50 1/12 * * *'
5+
- cron: '50 00 * * *'
76
push:
87
paths:
98
- 'VERSION'

.github/workflows/issue_count.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Issue Tracker
22

33
on:
44
schedule:
5-
- cron: '*/10 * * * *'
5+
- cron: '10 1/4 * * *'
66

77
permissions:
88
contents: read
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Maintainer file check
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
paths:
8+
- MAINTAINERS.yml
9+
10+
permissions:
11+
contents: read
12+
13+
jobs:
14+
assignment:
15+
name: Check MAINTAINERS.yml changes
16+
runs-on: ubuntu-24.04
17+
18+
steps:
19+
- name: Check out source code
20+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
21+
22+
- name: Set up Python
23+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
24+
with:
25+
python-version: 3.12
26+
cache: pip
27+
cache-dependency-path: scripts/requirements-actions.txt
28+
29+
- name: Install Python packages
30+
run: |
31+
pip install -r scripts/requirements-actions.txt --require-hashes
32+
33+
- name: Fetch MAINTAINERS.yml from mainline
34+
run: |
35+
git fetch origin main
36+
git show origin/main:MAINTAINERS.yml > mainline_MAINTAINERS.yml
37+
38+
- name: Check maintainer file changes
39+
env:
40+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41+
run: |
42+
python ./scripts/ci/check_maintainer_changes.py \
43+
--repo zephyrproject-rtos/zephyr mainline_MAINTAINERS.yml MAINTAINERS.yml

.github/workflows/pr_metadata_check.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ jobs:
3333
pip install -r scripts/requirements-actions.txt --require-hashes
3434
3535
- name: Run the check script
36+
env:
37+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3638
run: |
3739
./scripts/ci/do_not_merge.py -p "${{ github.event.pull_request.number }}"
3840

0 commit comments

Comments
 (0)