From a6f3cf8b85a13ac7ac5d80f89c5cc348e7b3f5cc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Nov 2025 20:24:46 +0000 Subject: [PATCH] Bump actions/download-artifact from 5 to 6 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5 to 6. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-libs.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-libs.yml b/.github/workflows/build-libs.yml index c3c6465..58358f7 100644 --- a/.github/workflows/build-libs.yml +++ b/.github/workflows/build-libs.yml @@ -94,23 +94,23 @@ jobs: - name: Clone Git repository uses: actions/checkout@v5 - name: Retrieve dylib - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: macos-dylib - name: Retrieve x64 DLL - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: windows-x64-dll - name: Retrieve x64 DLL with ASIO support - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: windows-x64-dll-asio - name: Retrieve Win32 DLL - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: windows-Win32-dll - name: Retrieve Win32 DLL with ASIO support - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: windows-Win32-dll-asio - name: Commit and push binaries (if there are changes)