Skip to content

Commit 0739d73

Browse files
committed
update actions
1 parent 8e5db91 commit 0739d73

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
lint:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
- name: Set up Python
14-
uses: actions/setup-python@v2
14+
uses: actions/setup-python@v4
1515
with:
1616
python-version: 3.8
1717

@@ -34,17 +34,17 @@ jobs:
3434
name: Build source distribution
3535
runs-on: ubuntu-latest
3636
steps:
37-
- uses: actions/checkout@v2
37+
- uses: actions/checkout@v3
3838

39-
- uses: actions/setup-python@v2
39+
- uses: actions/setup-python@v4
4040
name: Install Python
4141
with:
4242
python-version: 3.8
4343

4444
- name: Build sdist
4545
run: python setup.py sdist
4646

47-
- uses: actions/upload-artifact@v2
47+
- uses: actions/upload-artifact@v3
4848
with:
4949
path: dist/*.tar.gz
5050

@@ -58,7 +58,7 @@ jobs:
5858
# Only publish when a GitHub Release is created.
5959
if: github.event_name == 'release' && github.event.action == 'published'
6060
steps:
61-
- uses: actions/download-artifact@v2
61+
- uses: actions/download-artifact@v3
6262
with:
6363
name: artifact
6464
path: dist

0 commit comments

Comments
 (0)