Skip to content

Commit

Permalink
Bump artifact upload and download actions from v2 to v4
Browse files Browse the repository at this point in the history
The old versions were depreciated and the workflows would auto-fail, this commit should fix that problem
  • Loading branch information
Jurassic001 committed Oct 10, 2024
1 parent 0eacaae commit 5cb9b31
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release-draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: python scripts/build.py -cs

- name: Upload executable
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: simple_ytdl_windows
path: ./pyinstaller/dist/simple_ytdl_win32.exe
Expand All @@ -52,7 +52,7 @@ jobs:
run: python scripts/build.py -cs

- name: Upload executable
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: simple_ytdl_linux
path: ./pyinstaller/dist/simple_ytdl_linux
Expand All @@ -77,7 +77,7 @@ jobs:
run: python scripts/build.py -cs

- name: Upload executable
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: simple_ytdl_macos
path: ./pyinstaller/dist/simple_ytdl_macos
Expand All @@ -89,17 +89,17 @@ jobs:

steps:
- name: Download Windows executable
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: simple_ytdl_windows

- name: Download Linux executable
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: simple_ytdl_linux

- name: Download MacOS executable
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: simple_ytdl_macos

Expand Down

0 comments on commit 5cb9b31

Please sign in to comment.