Skip to content

Commit 6681530

Browse files
dependabot[bot]dpgeorge
authored andcommitted
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](actions/setup-python@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>
1 parent c76e601 commit 6681530

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/code_formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-22.04
1212
steps:
1313
- uses: actions/checkout@v5
14-
- uses: actions/setup-python@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/commit_formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
- 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- uses: actions/checkout@v5
21-
- uses: actions/setup-python@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/mpremote.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
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/ports_unix.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
runs-on: ubuntu-latest
7272
steps:
7373
- uses: actions/checkout@v5
74-
- uses: actions/setup-python@v5
74+
- uses: actions/setup-python@v6
7575
# Python 3.12 is the default for ubuntu-24.04, but that has compatibility issues with settrace tests.
7676
# Can remove this step when ubuntu-latest uses a more recent Python 3.x as the default.
7777
with:
@@ -204,7 +204,7 @@ jobs:
204204
runs-on: ubuntu-latest
205205
steps:
206206
- uses: actions/checkout@v5
207-
- uses: actions/setup-python@v5
207+
- uses: actions/setup-python@v6
208208
# Python 3.12 is the default for ubuntu-24.04, but that has compatibility issues with settrace tests.
209209
# Can remove this step when ubuntu-latest uses a more recent Python 3.x as the default.
210210
with:
@@ -221,7 +221,7 @@ jobs:
221221
runs-on: macos-latest
222222
steps:
223223
- uses: actions/checkout@v5
224-
- uses: actions/setup-python@v5
224+
- uses: actions/setup-python@v6
225225
with:
226226
python-version: '3.8'
227227
- name: Build
@@ -281,7 +281,7 @@ jobs:
281281
runs-on: ubuntu-latest
282282
steps:
283283
- uses: actions/checkout@v5
284-
- uses: actions/setup-python@v5
284+
- uses: actions/setup-python@v6
285285
# Python 3.12 is the default for ubuntu-24.04, but that has compatibility issues with settrace tests.
286286
# Can remove this step when ubuntu-latest uses a more recent Python 3.x as the default.
287287
with:
@@ -306,7 +306,7 @@ jobs:
306306
runs-on: ubuntu-latest
307307
steps:
308308
- uses: actions/checkout@v5
309-
- uses: actions/setup-python@v5
309+
- uses: actions/setup-python@v6
310310
# Python 3.12 is the default for ubuntu-24.04, but that has compatibility issues with settrace tests.
311311
# Can remove this step when ubuntu-latest uses a more recent Python 3.x as the default.
312312
with:

.github/workflows/ports_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
run:
110110
shell: msys2 {0}
111111
steps:
112-
- uses: actions/setup-python@v5
112+
- uses: actions/setup-python@v6
113113
# note: can go back to installing mingw-w64-${{ matrix.env }}-python after
114114
# MSYS2 updates to Python >3.12 (due to settrace compatibility issue)
115115
with:

0 commit comments

Comments
 (0)