Skip to content

Commit

Permalink
Merge pull request #326 from dvonthenen/fix-download-artifact-release
Browse files Browse the repository at this point in the history
Fix actions/download-artifact Deprecation v2 -> v3
  • Loading branch information
davidvonthenen authored Sep 18, 2024
2 parents 640c833 + 7d198fa commit 184f161
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CD-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
needs: [build]
steps:
- name: Download build artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: dist
path: "dist"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
needs: [build]
steps:
- name: Download build artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: dist
path: "dist"
Expand Down

0 comments on commit 184f161

Please sign in to comment.