Skip to content

Commit 3b0e357

Browse files
committed
Patch Node12 problems in continuous-deployment
1 parent 36c4395 commit 3b0e357

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/continuous-deployment.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171

7272
- id: save
7373
name: Save artifact
74-
uses: actions/upload-artifact@v2
74+
uses: actions/upload-artifact@v3
7575
with:
7676
name: build-${{ github.run_number }}
7777
path: ./dist
@@ -84,13 +84,13 @@ jobs:
8484
if: startsWith(github.ref, 'refs/tags') == 0
8585
steps:
8686
- name: Set up Python 3.9
87-
uses: actions/setup-python@v1
87+
uses: actions/setup-python@v4
8888
with:
8989
python-version: 3.9
9090

9191
- id: fetch
9292
name: Fetch artifact
93-
uses: actions/download-artifact@v2
93+
uses: actions/download-artifact@v3
9494
with:
9595
name: build-${{ github.run_number }}
9696
path: ./dist
@@ -113,13 +113,13 @@ jobs:
113113
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
114114
steps:
115115
- name: Set up Python 3.9
116-
uses: actions/setup-python@v1
116+
uses: actions/setup-python@v4
117117
with:
118118
python-version: 3.9
119119

120120
- id: fetch
121121
name: Fetch artifact
122-
uses: actions/download-artifact@v2
122+
uses: actions/download-artifact@v3
123123
with:
124124
name: build-${{ github.run_number }}
125125
path: ./dist

0 commit comments

Comments
 (0)