Skip to content

Commit cac88cd

Browse files
chore: Use actions/setup-python v4 (#1898)
* Use actions/setup-python v4 for all workflows. - c.f. https://github.com/actions/setup-python/releases/tag/v4.0.0
1 parent d82bced commit cac88cd

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

.github/workflows/bump-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ jobs:
179179
180180
- name: Set up Python 3.10
181181
if: success()
182-
uses: actions/setup-python@v3
182+
uses: actions/setup-python@v4
183183
with:
184184
python-version: '3.10'
185185

.github/workflows/ci.yml

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

3737
- name: Set up Python ${{ matrix.python-version }}
38-
uses: actions/setup-python@v3
38+
uses: actions/setup-python@v4
3939
with:
4040
python-version: ${{ matrix.python-version }}
4141

.github/workflows/dependencies-head.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v3
2424

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

@@ -49,7 +49,7 @@ jobs:
4949
- uses: actions/checkout@v3
5050

5151
- name: Set up Python ${{ matrix.python-version }}
52-
uses: actions/setup-python@v3
52+
uses: actions/setup-python@v4
5353
with:
5454
python-version: ${{ matrix.python-version }}
5555

@@ -78,7 +78,7 @@ jobs:
7878
steps:
7979
- uses: actions/checkout@v3
8080
- name: Set up Python ${{ matrix.python-version }}
81-
uses: actions/setup-python@v3
81+
uses: actions/setup-python@v4
8282
with:
8383
python-version: ${{ matrix.python-version }}
8484
- name: Install dependencies
@@ -104,7 +104,7 @@ jobs:
104104
steps:
105105
- uses: actions/checkout@v3
106106
- name: Set up Python ${{ matrix.python-version }}
107-
uses: actions/setup-python@v3
107+
uses: actions/setup-python@v4
108108
with:
109109
python-version: ${{ matrix.python-version }}
110110
- name: Install dependencies
@@ -130,7 +130,7 @@ jobs:
130130
- uses: actions/checkout@v3
131131

132132
- name: Set up Python ${{ matrix.python-version }}
133-
uses: actions/setup-python@v3
133+
uses: actions/setup-python@v4
134134
with:
135135
python-version: ${{ matrix.python-version }}
136136

@@ -165,7 +165,7 @@ jobs:
165165
steps:
166166
- uses: actions/checkout@v3
167167
- name: Set up Python ${{ matrix.python-version }}
168-
uses: actions/setup-python@v3
168+
uses: actions/setup-python@v4
169169
with:
170170
python-version: ${{ matrix.python-version }}
171171
- name: Install dependencies

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
fetch-depth: 0
2626
- name: Set up Python 3.10
27-
uses: actions/setup-python@v3
27+
uses: actions/setup-python@v4
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
- name: Install dependencies

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v3
1919
- name: Set up Python 3.10
20-
uses: actions/setup-python@v3
20+
uses: actions/setup-python@v4
2121
with:
2222
python-version: '3.10'
2323
- name: Install dependencies

.github/workflows/lower-bound-requirements.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v3
2121

2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v3
23+
uses: actions/setup-python@v4
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626

.github/workflows/notebooks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v3
2323

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

.github/workflows/publish-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
fetch-depth: 0
3232

3333
- name: Set up Python 3.10
34-
uses: actions/setup-python@v3
34+
uses: actions/setup-python@v4
3535
with:
3636
python-version: '3.10'
3737

.github/workflows/release_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- uses: actions/checkout@v3
2828

2929
- name: Set up Python ${{ matrix.python-version }}
30-
uses: actions/setup-python@v3
30+
uses: actions/setup-python@v4
3131
with:
3232
python-version: ${{ matrix.python-version }}
3333

0 commit comments

Comments
 (0)