Skip to content

Commit fd4be23

Browse files
Merge branch 'master' into esp32p4_new2
Signed-off-by: Vincent1-python <pywei201209@163.com>
2 parents d9569d5 + adf6319 commit fd4be23

File tree

332 files changed

+4360
-1753
lines changed

Some content is hidden

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

332 files changed

+4360
-1753
lines changed

.github/workflows/biome.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout
10-
uses: actions/checkout@v4
10+
uses: actions/checkout@v5
1111
- name: Setup Biome
1212
uses: biomejs/setup-biome@v2
1313
with:

.github/workflows/code_formatting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
code-formatting:
1111
runs-on: ubuntu-22.04
1212
steps:
13-
- uses: actions/checkout@v4
14-
- uses: actions/setup-python@v5
13+
- uses: actions/checkout@v5
14+
- uses: actions/setup-python@v6
1515
- name: Install packages
1616
run: source tools/ci.sh && ci_c_code_formatting_setup
1717
- name: Run code formatting

.github/workflows/code_size.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
build:
2626
runs-on: ubuntu-22.04
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
with:
3030
fetch-depth: 100
3131
- name: Install packages

.github/workflows/code_size_comment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: 'Download artifact'
1717
id: download-artifact
18-
uses: actions/github-script@v7
18+
uses: actions/github-script@v8
1919
with:
2020
result-encoding: string
2121
script: |
@@ -56,7 +56,7 @@ jobs:
5656
run: unzip code-size-report.zip
5757
- name: Post comment to pull request
5858
if: steps.download-artifact.outputs.result == 'ok'
59-
uses: actions/github-script@v7
59+
uses: actions/github-script@v8
6060
with:
6161
github-token: ${{secrets.GITHUB_TOKEN}}
6262
script: |

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
codespell:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@v5
1010
# codespell version should be kept in sync with .pre-commit-config.yml
1111
- run: pip install --user codespell==2.4.1 tomli
1212
- run: codespell

.github/workflows/commit_formatting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
with:
1515
fetch-depth: 100
16-
- uses: actions/setup-python@v5
16+
- uses: actions/setup-python@v6
1717
- name: Check commit message formatting
1818
run: source tools/ci.sh && ci_commit_formatting_run

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/checkout@v4
21-
- uses: actions/setup-python@v5
20+
- uses: actions/checkout@v5
21+
- uses: actions/setup-python@v6
2222
- name: Install Python packages
2323
run: pip install -r docs/requirements.txt
2424
- name: Build unix port

.github/workflows/examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
embedding:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- name: Build
2323
run: make -C examples/embedding -f micropython_embed.mk && make -C examples/embedding
2424
- name: Run

.github/workflows/mpremote.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
# Setting this to zero means fetch all history and tags,
1717
# which hatch-vcs can use to discover the version tag.
1818
fetch-depth: 0
19-
- uses: actions/setup-python@v5
19+
- uses: actions/setup-python@v6
2020
- name: Install build tools
2121
run: pip install build
2222
- name: Build mpremote wheel

.github/workflows/mpy_format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ concurrency:
1515

1616
jobs:
1717
test:
18-
runs-on: ubuntu-22.04 # use 22.04 to get python2
18+
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- name: Install packages
2222
run: source tools/ci.sh && ci_mpy_format_setup
2323
- name: Test mpy-tool.py

0 commit comments

Comments
 (0)