From 37c6e2d48e626ed7c78779b619685cf77b1c0c48 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 22:13:25 +0000 Subject: [PATCH] build(deps): bump actions/download-artifact in /.github/workflows Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.1.7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4.1.7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/windows-installer.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/windows-installer.yml b/.github/workflows/windows-installer.yml index a05b24925..e5b765f4d 100644 --- a/.github/workflows/windows-installer.yml +++ b/.github/workflows/windows-installer.yml @@ -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 @@ -162,17 +162,17 @@ 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 @@ -180,7 +180,7 @@ jobs: 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