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.1.7 in /.github/workflows #118

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/windows-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
targetplatform: [x86, x64]
steps:
- name: Download distribution binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: dist-${{ matrix.targetplatform }}
- name: Download certificate and private key
Expand Down Expand Up @@ -162,25 +162,25 @@ jobs:

steps:
- name: Download 64Bit Installer
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: PyAfipWs-Installer-x64
path: PyAfipWs-Installer-x64.exe
- name: Download 32bit Installer
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: PyAfipWs-Installer-x86
path: PyAfipWs-Installer-x86.exe
- name: Download distribution binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: dist-x86
path: dist-32
- name: Create ZIP archive
run: |
zip dist-32.zip -r dist-32
- name: Download distribution binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: dist-x64
path: dist-64
Expand Down
Loading