Skip to content

Commit a14abe3

Browse files
committed
CI/CD: Bump download-artifact to v4
The create-release CI/CD step is currently failing with the error: This request has been automatically failed because it uses a deprecated version of `actions/download-artifact: v2` Github deprecated download-artifact v2 and asks users to use v4 instead: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/ Let's do what's recommended to unbreak the release action. Signed-off-by: Christoph Müllner <christoph.muellner@vrull.eu>
1 parent 8b1a750 commit a14abe3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/nightly-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
prerelease: true
160160

161161
- name: Download Built Artifacts
162-
uses: actions/download-artifact@v2
162+
uses: actions/download-artifact@v4
163163
with:
164164
path: ${{ env.ARTIFACTS_DIR }}
165165

@@ -200,7 +200,7 @@ jobs:
200200
name: upload ${{ matrix.artifact }}
201201
steps:
202202

203-
- uses: actions/download-artifact@v2
203+
- uses: actions/download-artifact@v4
204204
with:
205205
name: ${{ matrix.artifact }}
206206

0 commit comments

Comments
 (0)