From 29135ee81e4eeb078cb6b7301cd30688efefbd53 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 16 Aug 2025 14:16:49 +0000 Subject: [PATCH] Bump actions/download-artifact from 4 to 5 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 5. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '5' 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 d91c4da..fcd3b88 100644 --- a/.github/workflows/build-libs.yml +++ b/.github/workflows/build-libs.yml @@ -91,23 +91,23 @@ jobs: - name: Clone Git repository uses: actions/checkout@v5 - name: Retrieve dylib - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: macos-dylib - name: Retrieve x64 DLL - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: windows-x64-dll - name: Retrieve x64 DLL with ASIO support - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: windows-x64-dll-asio - name: Retrieve Win32 DLL - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: windows-Win32-dll - name: Retrieve Win32 DLL with ASIO support - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: windows-Win32-dll-asio - name: Commit and push binaries (if there are changes)