Browse Source

github/workflows: Bump actions/setup-python from 4 to 5.

Bumps [actions/setup-python](https://github.com/actions/setup-python) from
4 to 5.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
pull/13146/head
dependabot[bot] 11 months ago
committed by Damien George
parent
commit
be64641210
  1. 4
      .github/workflows/code_formatting.yml
  2. 2
      .github/workflows/commit_formatting.yml
  3. 2
      .github/workflows/docs.yml
  4. 2
      .github/workflows/mpremote.yml
  5. 2
      .github/workflows/ports_unix.yml

4
.github/workflows/code_formatting.yml

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-python@v4 - uses: actions/setup-python@v5
- name: Install packages - name: Install packages
run: source tools/ci.sh && ci_c_code_formatting_setup run: source tools/ci.sh && ci_c_code_formatting_setup
- name: Run code formatting - name: Run code formatting
@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-python@v4 - uses: actions/setup-python@v5
- name: Install packages - name: Install packages
run: source tools/ci.sh && ci_code_spell_setup run: source tools/ci.sh && ci_code_spell_setup
- name: Run spell checker - name: Run spell checker

2
.github/workflows/commit_formatting.yml

@ -13,6 +13,6 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
fetch-depth: '100' fetch-depth: '100'
- uses: actions/setup-python@v4 - uses: actions/setup-python@v5
- name: Check commit message formatting - name: Check commit message formatting
run: source tools/ci.sh && ci_commit_formatting_run run: source tools/ci.sh && ci_commit_formatting_run

2
.github/workflows/docs.yml

@ -16,7 +16,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-python@v4 - uses: actions/setup-python@v5
- name: Install Python packages - name: Install Python packages
run: pip install -r docs/requirements.txt run: pip install -r docs/requirements.txt
- name: Build docs - name: Build docs

2
.github/workflows/mpremote.yml

@ -16,7 +16,7 @@ jobs:
# Setting this to zero means fetch all history and tags, # Setting this to zero means fetch all history and tags,
# which hatch-vcs can use to discover the version tag. # which hatch-vcs can use to discover the version tag.
fetch-depth: 0 fetch-depth: 0
- uses: actions/setup-python@v4 - uses: actions/setup-python@v5
- name: Install build tools - name: Install build tools
run: pip install build run: pip install build
- name: Build mpremote wheel - name: Build mpremote wheel

2
.github/workflows/ports_unix.yml

@ -196,7 +196,7 @@ jobs:
runs-on: macos-11.0 runs-on: macos-11.0
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-python@v4 - uses: actions/setup-python@v5
with: with:
python-version: '3.8' python-version: '3.8'
- name: Build - name: Build

Loading…
Cancel
Save