Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump actions/download-artifact from 3 to 4 #146

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
runs-on: ubuntu-20.04
needs: build_x64_executables
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build_x64
path: .
Expand All @@ -116,7 +116,7 @@ jobs:
runs-on: ubuntu-20.04
needs: build_x64_executables
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build_x64
path: .
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
runs-on: macos-11
needs: build_x64_executables
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build_x64
path: .
Expand All @@ -168,7 +168,7 @@ jobs:
runs-on: windows-2019
needs: build_x64_executables
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build_x64
path: .
Expand Down Expand Up @@ -222,11 +222,11 @@ jobs:
- build_arm_executables
runs-on: ubuntu-20.04
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build_x64
path: .
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build_arm
path: .
Expand Down
Loading