Skip to content

Commit 799adb5

Browse files
authored
Bump actions/setup-python from 3 to 4 (#3121)
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]>
1 parent 162ecd1 commit 799adb5

9 files changed

+24
-10
lines changed

.github/workflows/diff_shades.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ jobs:
2020

2121
steps:
2222
- uses: actions/checkout@v3
23-
- uses: actions/setup-python@v3
23+
- uses: actions/setup-python@v4
24+
with:
25+
python-version: "*"
2426

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

57-
- uses: actions/setup-python@v3
59+
- uses: actions/setup-python@v4
60+
with:
61+
python-version: "*"
5862

5963
- name: Install diff-shades and support dependencies
6064
run: |

.github/workflows/diff_shades_comment.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v3
16-
- uses: actions/setup-python@v3
16+
- uses: actions/setup-python@v4
17+
with:
18+
python-version: "*"
1719

1820
- name: Install support dependencies
1921
run: |

.github/workflows/doc.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
- uses: actions/checkout@v3
2525

2626
- name: Set up latest Python
27-
uses: actions/setup-python@v3
27+
uses: actions/setup-python@v4
28+
with:
29+
python-version: "*"
2830

2931
- name: Install dependencies
3032
run: |

.github/workflows/fuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@v3
2525

2626
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@v3
27+
uses: actions/setup-python@v4
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030

.github/workflows/lint.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ jobs:
1717
- uses: actions/checkout@v3
1818

1919
- name: Set up Python
20-
uses: actions/setup-python@v3
20+
uses: actions/setup-python@v4
21+
with:
22+
python-version: "*"
2123

2224
- name: Install dependencies
2325
run: |

.github/workflows/pypi_upload.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ jobs:
1616
- uses: actions/checkout@v3
1717

1818
- name: Set up Python
19-
uses: actions/setup-python@v3
19+
uses: actions/setup-python@v4
20+
with:
21+
python-version: "*"
2022

2123
- name: Install latest pip, build, twine
2224
run: |

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/checkout@v3
3232

3333
- name: Set up Python ${{ matrix.python-version }}
34-
uses: actions/setup-python@v3
34+
uses: actions/setup-python@v4
3535
with:
3636
python-version: ${{ matrix.python-version }}
3737

.github/workflows/upload_binary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- uses: actions/checkout@v3
3535

3636
- name: Set up latest Python
37-
uses: actions/setup-python@v3
37+
uses: actions/setup-python@v4
3838
with:
3939
python-version: "*"
4040

.github/workflows/uvloop_test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ jobs:
3333
- uses: actions/checkout@v3
3434

3535
- name: Set up Python ${{ matrix.python-version }}
36-
uses: actions/setup-python@v3
36+
uses: actions/setup-python@v4
37+
with:
38+
python-version: "*"
3739

3840
- name: Install latest pip
3941
run: |

0 commit comments

Comments
 (0)