From 1c48dbfd0ce415a78b8738092084e06a79ae9749 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 22:17:23 +0000 Subject: [PATCH] Bump actions/download-artifact from 3 to 4.1.7 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/deployment.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 603225cd..33e0c696 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -555,35 +555,35 @@ jobs: - name: Download Chromium Addon continue-on-error: true - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4.1.7 with: name: artifact_chromium path: "${{env.Project_RELEASE_DIR}}" - name: Download Firefox Addon continue-on-error: true - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4.1.7 with: name: artifact_firefox path: "${{env.Project_RELEASE_DIR}}" - name: Download Linux Portable continue-on-error: true - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4.1.7 with: name: artifact_linux_portable path: "${{env.Project_RELEASE_DIR}}" - name: Download Windows MinGW 64 Portable continue-on-error: true - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4.1.7 with: name: artifact_windows_mingw_64_portable path: "${{env.Project_RELEASE_DIR}}" - name: Download Windows 64 Installer continue-on-error: true - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4.1.7 with: name: artifact_windows_64_installer path: "${{env.Project_RELEASE_DIR}}"