Skip to content

Commit 4100a7b

Browse files
authored
Bump all action versions from v2 to v4 (#149)
1 parent aaa63be commit 4100a7b

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/ci.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
lint:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/setup-python@v2
15+
- uses: actions/setup-python@v4
1616
with:
1717
python-version: "3.x"
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v4
1919
- name: Lint with black through tox
2020
run: |
2121
pip install tox
@@ -38,10 +38,10 @@ jobs:
3838
os: [ubuntu-latest, macOS-latest, windows-latest]
3939

4040
steps:
41-
- uses: actions/setup-python@v2
41+
- uses: actions/setup-python@v4
4242
with:
4343
python-version: "3.x"
44-
- uses: actions/checkout@v2
44+
- uses: actions/checkout@v4
4545
- name: Run tests with pytest
4646
run: |
4747
pip install tox
@@ -53,11 +53,11 @@ jobs:
5353
docs:
5454
runs-on: ubuntu-latest
5555
steps:
56-
- uses: actions/setup-python@v2
56+
- uses: actions/setup-python@v4
5757
with:
5858
# Ensure that this version matches .readthedocs.yaml
5959
python-version: "3.9"
60-
- uses: actions/checkout@v2
60+
- uses: actions/checkout@v4
6161
- name: Build the HTML docs
6262
run: |
6363
pip install tox

.github/workflows/notebooks.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Set up Git repository
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818
- name: Set up Python
19-
uses: actions/setup-python@v2
19+
uses: actions/setup-python@v4
2020
with:
2121
python-version: "3.9"
2222

.github/workflows/python-publish.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
deploy:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2323
- name: Set up Python
24-
uses: actions/setup-python@v2
24+
uses: actions/setup-python@v4
2525
with:
2626
python-version: '3.x'
2727
- name: Install dependencies

0 commit comments

Comments
 (0)