Skip to content

Commit d689c4c

Browse files
author
rsora
committed
Bump actions/download-artifact to v2 and maitain compatibility
1 parent 59307dc commit d689c4c

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.github/workflows/nightly.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,11 @@ jobs:
4242
uses: actions/checkout@v2
4343

4444
- name: Download artifacts
45-
uses: actions/download-artifact@v1
45+
uses: actions/download-artifact@v2
4646
with:
4747
name: dist
48+
# to ensure compatibility with v1
49+
path: dist
4850

4951
- name: Import Code-Signing Certificates
5052
env:
@@ -97,9 +99,11 @@ jobs:
9799

98100
steps:
99101
- name: Download artifact
100-
uses: actions/download-artifact@v1
102+
uses: actions/download-artifact@v2
101103
with:
102104
name: dist
105+
# to ensure compatibility with v1
106+
path: dist
103107

104108
- name: upload
105109
uses: docker://plugins/s3

.github/workflows/release.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,11 @@ jobs:
3737
uses: actions/checkout@v2
3838

3939
- name: Download artifacts
40-
uses: actions/download-artifact@v1
40+
uses: actions/download-artifact@v2
4141
with:
4242
name: dist
43+
# to ensure compatibility with v1
44+
path: dist
4345

4446
- name: Import Code-Signing Certificates
4547
env:
@@ -95,9 +97,11 @@ jobs:
9597
uses: actions/checkout@v2
9698

9799
- name: Download artifact
98-
uses: actions/download-artifact@v1
100+
uses: actions/download-artifact@v2
99101
with:
100102
name: dist
103+
# to ensure compatibility with v1
104+
path: dist
101105

102106
- name: Read CHANGELOG
103107
id: changelog

0 commit comments

Comments
 (0)