Skip to content

Commit 0a8f328

Browse files
ci: Use actions/setup-python v3 (#1828)
* Use actions/setup-python v3 for all workflows. - c.f. https://github.com/actions/setup-python/releases/tag/v3.0.0
1 parent 95cf9c2 commit 0a8f328

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

.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@v2
3636

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

.github/workflows/dependencies-head.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v2
2020

2121
- name: Set up Python ${{ matrix.python-version }}
22-
uses: actions/setup-python@v2
22+
uses: actions/setup-python@v3
2323
with:
2424
python-version: ${{ matrix.python-version }}
2525

@@ -45,7 +45,7 @@ jobs:
4545
- uses: actions/checkout@v2
4646

4747
- name: Set up Python ${{ matrix.python-version }}
48-
uses: actions/setup-python@v2
48+
uses: actions/setup-python@v3
4949
with:
5050
python-version: ${{ matrix.python-version }}
5151

@@ -74,7 +74,7 @@ jobs:
7474
steps:
7575
- uses: actions/checkout@v2
7676
- name: Set up Python ${{ matrix.python-version }}
77-
uses: actions/setup-python@v2
77+
uses: actions/setup-python@v3
7878
with:
7979
python-version: ${{ matrix.python-version }}
8080
- name: Install dependencies
@@ -100,7 +100,7 @@ jobs:
100100
steps:
101101
- uses: actions/checkout@v2
102102
- name: Set up Python ${{ matrix.python-version }}
103-
uses: actions/setup-python@v2
103+
uses: actions/setup-python@v3
104104
with:
105105
python-version: ${{ matrix.python-version }}
106106
- name: Install dependencies
@@ -125,7 +125,7 @@ jobs:
125125
steps:
126126
- uses: actions/checkout@v2
127127
- name: Set up Python ${{ matrix.python-version }}
128-
uses: actions/setup-python@v2
128+
uses: actions/setup-python@v3
129129
with:
130130
python-version: ${{ matrix.python-version }}
131131
- 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@v2
27+
uses: actions/setup-python@v3
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@v2
1919
- name: Set up Python 3.10
20-
uses: actions/setup-python@v2
20+
uses: actions/setup-python@v3
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@v2
2121

2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v2
23+
uses: actions/setup-python@v3
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
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v2
1919
- name: Set up Python 3.10
20-
uses: actions/setup-python@v2
20+
uses: actions/setup-python@v3
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- name: Install dependencies

.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@v2
34+
uses: actions/setup-python@v3
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@v2
2828

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

.github/workflows/tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
git merge --squash "origin/${GITHUB_HEAD_REF}"
6060
git commit -m "${PR_TITLE} (#${PR_NUMBER})"
6161
- name: Set up Python 3.10
62-
uses: actions/setup-python@v2
62+
uses: actions/setup-python@v3
6363
with:
6464
python-version: '3.10'
6565
- name: Install bump2version

0 commit comments

Comments
 (0)