Skip to content

Commit 3dcc4e2

Browse files
build(deps): 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 4bd2a4b commit 3dcc4e2

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
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@v4
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@v4
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
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v4
19-
- uses: actions/setup-python@v5
19+
- uses: actions/setup-python@v6
2020
- name: Install Python packages
2121
run: pip install -r docs/requirements.txt
2222
- name: Build docs

.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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173
runs-on: ubuntu-latest
174174
steps:
175175
- uses: actions/checkout@v4
176-
- uses: actions/setup-python@v5
176+
- uses: actions/setup-python@v6
177177
# Python 3.12 is the default for ubuntu-24.04, but that has compatibility issues with settrace tests.
178178
# Can remove this step when ubuntu-latest uses a more recent Python 3.x as the default.
179179
with:
@@ -190,7 +190,7 @@ jobs:
190190
runs-on: ubuntu-latest
191191
steps:
192192
- uses: actions/checkout@v4
193-
- uses: actions/setup-python@v5
193+
- uses: actions/setup-python@v6
194194
# Python 3.12 is the default for ubuntu-24.04, but that has compatibility issues with settrace tests.
195195
# Can remove this step when ubuntu-latest uses a more recent Python 3.x as the default.
196196
with:
@@ -207,7 +207,7 @@ jobs:
207207
runs-on: macos-latest
208208
steps:
209209
- uses: actions/checkout@v4
210-
- uses: actions/setup-python@v5
210+
- uses: actions/setup-python@v6
211211
with:
212212
python-version: '3.8'
213213
- name: Build

.github/workflows/ports_windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- uses: microsoft/setup-msbuild@v2
5656
with:
5757
vs-version: ${{ matrix.vs_version }}
58-
- uses: actions/setup-python@v5
58+
- uses: actions/setup-python@v6
5959
if: matrix.runner == 'windows-2019'
6060
with:
6161
python-version: '3.9'
@@ -110,7 +110,7 @@ jobs:
110110
run:
111111
shell: msys2 {0}
112112
steps:
113-
- uses: actions/setup-python@v5
113+
- uses: actions/setup-python@v6
114114
# note: can go back to installing mingw-w64-${{ matrix.env }}-python after
115115
# MSYS2 updates to Python >3.12 (due to settrace compatibility issue)
116116
with:

0 commit comments

Comments
 (0)