Skip to content

Commit 5d3eaa5

Browse files
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] <[email protected]>
1 parent c3fef2e commit 5d3eaa5

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ jobs:
197197
runs-on: macos-latest
198198
steps:
199199
- uses: actions/checkout@v4
200-
- uses: actions/setup-python@v5
200+
- uses: actions/setup-python@v6
201201
with:
202202
python-version: '3.8'
203203
- name: Build

.github/workflows/ports_windows.yml

Lines changed: 1 addition & 1 deletion
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'

0 commit comments

Comments
 (0)