Skip to content

Commit bf03df2

Browse files
committed
Downgrade upload-artifact and download-artifact from v3 to v2
1 parent 3bc15f4 commit bf03df2

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/docker-multistage-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
- name: "[Artifact Load] Download previously built image"
9595
uses: Wandalen/wretry.action@v1.0.12
9696
with:
97-
action: actions/download-artifact@v3
97+
action: actions/download-artifact@v2
9898
with: |
9999
name: ${{ steps.set-artifact-name.outputs.prev }}
100100
attempt_limit: 20
@@ -150,7 +150,7 @@ jobs:
150150
- name: "[Artifact Save] Upload currently built image"
151151
uses: Wandalen/wretry.action@v1.0.12
152152
with:
153-
action: actions/upload-artifact@v3
153+
action: actions/upload-artifact@v2
154154
with: |
155155
name: ${{ steps.set-artifact-name.outputs.curr }}
156156
path: ${{ steps.set-artifact-name.outputs.curr }}
@@ -163,7 +163,7 @@ jobs:
163163
### Verify uploaded image
164164
###
165165
- name: "[Artifact Save] Download (verify)"
166-
uses: actions/download-artifact@v3
166+
uses: actions/download-artifact@v2
167167
with:
168168
name: ${{ steps.set-artifact-name.outputs.curr }}
169169
path: ${{ steps.set-artifact-name.outputs.curr }}.tmp

.github/workflows/docker-multistage-push-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
- name: "[Artifact Load] Download previously built image"
9999
uses: Wandalen/wretry.action@v1.0.12
100100
with:
101-
action: actions/download-artifact@v3
101+
action: actions/download-artifact@v2
102102
with: |
103103
name: ${{ steps.set-artifact-name.outputs.curr }}
104104
attempt_limit: 20

.github/workflows/docker-multistage-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
- name: "[Artifact Load] Download previously built image"
8181
uses: Wandalen/wretry.action@v1.0.12
8282
with:
83-
action: actions/download-artifact@v3
83+
action: actions/download-artifact@v2
8484
with: |
8585
name: ${{ steps.set-artifact-name.outputs.curr }}
8686
attempt_limit: 20

0 commit comments

Comments
 (0)