summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2025-09-04 19:06:36 +0000
committerDamien George <damien@micropython.org>2025-09-16 13:29:45 +1000
commit6681530fc0f2b426e77642d887b548c0bae1fc9f (patch)
tree14bfde8c18cd40e99c2b70b560b1b2630cbd0199
parentc76e6014423f2690106a815d1deb643fb6f3627f (diff)
github/workflows: Bump actions/setup-python from 5 to 6.
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r--.github/workflows/code_formatting.yml2
-rw-r--r--.github/workflows/commit_formatting.yml2
-rw-r--r--.github/workflows/docs.yml2
-rw-r--r--.github/workflows/mpremote.yml2
-rw-r--r--.github/workflows/ports_unix.yml10
-rw-r--r--.github/workflows/ports_windows.yml2
6 files changed, 10 insertions, 10 deletions
diff --git a/.github/workflows/code_formatting.yml b/.github/workflows/code_formatting.yml
index 566977994..2a7da52e2 100644
--- a/.github/workflows/code_formatting.yml
+++ b/.github/workflows/code_formatting.yml
@@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v5
- - uses: actions/setup-python@v5
+ - uses: actions/setup-python@v6
- name: Install packages
run: source tools/ci.sh && ci_c_code_formatting_setup
- name: Run code formatting
diff --git a/.github/workflows/commit_formatting.yml b/.github/workflows/commit_formatting.yml
index 2e1def95c..58ffb745b 100644
--- a/.github/workflows/commit_formatting.yml
+++ b/.github/workflows/commit_formatting.yml
@@ -13,6 +13,6 @@ jobs:
- uses: actions/checkout@v5
with:
fetch-depth: 100
- - uses: actions/setup-python@v5
+ - uses: actions/setup-python@v6
- name: Check commit message formatting
run: source tools/ci.sh && ci_commit_formatting_run
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index f9d61125b..6a277a4a4 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v5
- - uses: actions/setup-python@v5
+ - uses: actions/setup-python@v6
- name: Install Python packages
run: pip install -r docs/requirements.txt
- name: Build unix port
diff --git a/.github/workflows/mpremote.yml b/.github/workflows/mpremote.yml
index 359d88828..36904764c 100644
--- a/.github/workflows/mpremote.yml
+++ b/.github/workflows/mpremote.yml
@@ -16,7 +16,7 @@ jobs:
# Setting this to zero means fetch all history and tags,
# which hatch-vcs can use to discover the version tag.
fetch-depth: 0
- - uses: actions/setup-python@v5
+ - uses: actions/setup-python@v6
- name: Install build tools
run: pip install build
- name: Build mpremote wheel
diff --git a/.github/workflows/ports_unix.yml b/.github/workflows/ports_unix.yml
index 20a0e8796..77d0b29ca 100644
--- a/.github/workflows/ports_unix.yml
+++ b/.github/workflows/ports_unix.yml
@@ -71,7 +71,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- - uses: actions/setup-python@v5
+ - uses: actions/setup-python@v6
# Python 3.12 is the default for ubuntu-24.04, but that has compatibility issues with settrace tests.
# Can remove this step when ubuntu-latest uses a more recent Python 3.x as the default.
with:
@@ -204,7 +204,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- - uses: actions/setup-python@v5
+ - uses: actions/setup-python@v6
# Python 3.12 is the default for ubuntu-24.04, but that has compatibility issues with settrace tests.
# Can remove this step when ubuntu-latest uses a more recent Python 3.x as the default.
with:
@@ -221,7 +221,7 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v5
- - uses: actions/setup-python@v5
+ - uses: actions/setup-python@v6
with:
python-version: '3.8'
- name: Build
@@ -281,7 +281,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- - uses: actions/setup-python@v5
+ - uses: actions/setup-python@v6
# Python 3.12 is the default for ubuntu-24.04, but that has compatibility issues with settrace tests.
# Can remove this step when ubuntu-latest uses a more recent Python 3.x as the default.
with:
@@ -306,7 +306,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- - uses: actions/setup-python@v5
+ - uses: actions/setup-python@v6
# Python 3.12 is the default for ubuntu-24.04, but that has compatibility issues with settrace tests.
# Can remove this step when ubuntu-latest uses a more recent Python 3.x as the default.
with:
diff --git a/.github/workflows/ports_windows.yml b/.github/workflows/ports_windows.yml
index 6b492640a..84a93a504 100644
--- a/.github/workflows/ports_windows.yml
+++ b/.github/workflows/ports_windows.yml
@@ -109,7 +109,7 @@ jobs:
run:
shell: msys2 {0}
steps:
- - uses: actions/setup-python@v5
+ - uses: actions/setup-python@v6
# note: can go back to installing mingw-w64-${{ matrix.env }}-python after
# MSYS2 updates to Python >3.12 (due to settrace compatibility issue)
with: