From 9303bb0b27249a7fb0782a75c048e77b50ef4d7d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 22:53:29 +0000 Subject: [PATCH] Bump actions/download-artifact from 7 to 8 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 7 to 8. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-libs.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-libs.yml b/.github/workflows/build-libs.yml index 7971e60..6122fa8 100644 --- a/.github/workflows/build-libs.yml +++ b/.github/workflows/build-libs.yml @@ -97,31 +97,31 @@ jobs: - name: Clone Git repository uses: actions/checkout@v6 - name: Retrieve dylib - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: macos-dylib - name: Retrieve x64 DLL - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: windows-x64-dll - name: Retrieve x64 DLL with ASIO support - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: windows-x64-dll-asio - name: Retrieve Win32 DLL - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: windows-Win32-dll - name: Retrieve Win32 DLL with ASIO support - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: windows-Win32-dll-asio - name: Retrieve ARM64 DLL - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: windows-ARM64-dll - name: Retrieve ARM64 DLL with ASIO support - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: windows-ARM64-dll-asio - name: Commit and push binaries (if there are changes)