Update actions/download-artifact in GitHub Actions workflows to v3

Signed-off-by: Dirk Stolle <striezel-dev@web.de>
This commit is contained in:
Dirk Stolle 2022-12-17 22:54:22 +01:00
parent dae8d221a1
commit f4aea59461
2 changed files with 4 additions and 4 deletions

View file

@ -158,7 +158,7 @@ jobs:
# fetch-depth: 2 # fetch-depth: 2
# #
# #- name: Download release binary # #- name: Download release binary
# # uses: actions/download-artifact@v2 # # uses: actions/download-artifact@v3
# # with: # # with:
# # name: release-binary-macos # # name: release-binary-macos
# #
@ -244,7 +244,7 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:
fetch-depth: 2 fetch-depth: 2
- uses: actions/download-artifact@v2 - uses: actions/download-artifact@v3
with: with:
name: release-binary name: release-binary
path: release-binary path: release-binary

View file

@ -48,7 +48,7 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:
fetch-depth: 2 fetch-depth: 2
- uses: actions/download-artifact@v2 - uses: actions/download-artifact@v3
with: with:
name: release-binary name: release-binary
path: release-binary path: release-binary
@ -95,7 +95,7 @@ jobs:
with: with:
fetch-depth: 2 fetch-depth: 2
# Download all artifacts # Download all artifacts
- uses: actions/download-artifact@v2 - uses: actions/download-artifact@v3
- name: Prep environment - name: Prep environment
run: | run: |
python3 -m pip install --upgrade pip virtualenv python3 -m pip install --upgrade pip virtualenv