Skip to content

Commit

Permalink
Bump actions/setup-python from 3 to 4 (#3121)
Browse files Browse the repository at this point in the history
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 3 to 4.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v3...v4)

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

Signed-off-by: dependabot[bot] <[email protected]>
hugovk authored Jun 13, 2022
1 parent 162ecd1 commit 799adb5
Showing 9 changed files with 24 additions and 10 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/diff_shades.yml
Original file line number Diff line number Diff line change
@@ -20,7 +20,9 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "*"

- name: Install diff-shades and support dependencies
run: |
@@ -54,7 +56,9 @@ jobs:
# The baseline revision could be rather old so a full clone is ideal.
fetch-depth: 0

- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "*"

- name: Install diff-shades and support dependencies
run: |
4 changes: 3 additions & 1 deletion .github/workflows/diff_shades_comment.yml
Original file line number Diff line number Diff line change
@@ -13,7 +13,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "*"

- name: Install support dependencies
run: |
4 changes: 3 additions & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
@@ -24,7 +24,9 @@ jobs:
- uses: actions/checkout@v3

- name: Set up latest Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: "*"

- name: Install dependencies
run: |
2 changes: 1 addition & 1 deletion .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

4 changes: 3 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -17,7 +17,9 @@ jobs:
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: "*"

- name: Install dependencies
run: |
4 changes: 3 additions & 1 deletion .github/workflows/pypi_upload.yml
Original file line number Diff line number Diff line change
@@ -16,7 +16,9 @@ jobs:
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: "*"

- name: Install latest pip, build, twine
run: |
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ jobs:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

2 changes: 1 addition & 1 deletion .github/workflows/upload_binary.yml
Original file line number Diff line number Diff line change
@@ -34,7 +34,7 @@ jobs:
- uses: actions/checkout@v3

- name: Set up latest Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: "*"

4 changes: 3 additions & 1 deletion .github/workflows/uvloop_test.yml
Original file line number Diff line number Diff line change
@@ -33,7 +33,9 @@ jobs:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: "*"

- name: Install latest pip
run: |

0 comments on commit 799adb5

Please sign in to comment.