Skip to content

Commit 4ee8d13

Browse files
committed
👷 Upgrade to Node 16 actions
1 parent 3577017 commit 4ee8d13

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
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v3
1616
- name: 🏗 Set up Python 3.7
17-
uses: actions/setup-python@v1
17+
uses: actions/setup-python@v4
1818
with:
1919
python-version: 3.7
2020
- name: 🏗 Install build dependencies
@@ -24,7 +24,7 @@ jobs:
2424
run: >-
2525
python setup.py sdist bdist_wheel
2626
- name: ⬆ Upload build result
27-
uses: actions/upload-artifact@v1
27+
uses: actions/upload-artifact@v3
2828
with:
2929
name: dist
3030
path: dist
@@ -35,7 +35,7 @@ jobs:
3535
steps:
3636
- uses: actions/checkout@v3
3737
- name: 🏗 Set up Python 3.10
38-
uses: actions/setup-python@v1
38+
uses: actions/setup-python@v4
3939
with:
4040
python-version: "3.10"
4141
- name: 🏗 Set up dev dependencies
@@ -54,7 +54,7 @@ jobs:
5454
steps:
5555
- uses: actions/checkout@v3
5656
- name: 🏗 Set up Python ${{ matrix.python }}
57-
uses: actions/setup-python@v1
57+
uses: actions/setup-python@v4
5858
with:
5959
python-version: ${{ matrix.python }}
6060
- name: 🏗 Set up test dependencies
@@ -75,7 +75,7 @@ jobs:
7575
runs-on: ubuntu-latest
7676
steps:
7777
- name: ⬇ Download build result
78-
uses: actions/download-artifact@v1
78+
uses: actions/download-artifact@v3
7979
with:
8080
name: dist
8181
path: dist
@@ -93,7 +93,7 @@ jobs:
9393
runs-on: ubuntu-latest
9494
steps:
9595
- name: ⬇ Download build result
96-
uses: actions/download-artifact@v1
96+
uses: actions/download-artifact@v3
9797
with:
9898
name: dist
9999
path: dist

0 commit comments

Comments
 (0)