From 08bbf89e1fb269981917c2eeb17ea23be3478df2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 22:07:40 +0000 Subject: [PATCH] build(deps): bump actions/download-artifact from 6 to 7 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 6 to 7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/java-release.yml | 8 ++++---- .github/workflows/javascript-release.yml | 2 +- .github/workflows/python-release.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/java-release.yml b/.github/workflows/java-release.yml index 252e6533..20cee957 100644 --- a/.github/workflows/java-release.yml +++ b/.github/workflows/java-release.yml @@ -80,7 +80,7 @@ jobs: java-version: ${{ env.JAVA_VERSION }} - name: Download all native libraries - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: path: native-libs @@ -128,7 +128,7 @@ jobs: java-version: ${{ env.JAVA_VERSION }} - name: Download JAR - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: java-jar @@ -177,7 +177,7 @@ jobs: java-version: ${{ env.JAVA_VERSION }} - name: Download JAR artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: java-jar path: bindings/java/build/libs @@ -199,7 +199,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/java-v') steps: - name: Download JAR - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: java-jar path: dist diff --git a/.github/workflows/javascript-release.yml b/.github/workflows/javascript-release.yml index 5201e360..692e6a08 100644 --- a/.github/workflows/javascript-release.yml +++ b/.github/workflows/javascript-release.yml @@ -262,7 +262,7 @@ jobs: working-directory: bindings/javascript - name: Download all artifacts - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: path: artifacts diff --git a/.github/workflows/python-release.yml b/.github/workflows/python-release.yml index 74b0b938..c731e60d 100644 --- a/.github/workflows/python-release.yml +++ b/.github/workflows/python-release.yml @@ -334,7 +334,7 @@ jobs: - pyodide if: "startsWith(github.ref, 'refs/tags/')" steps: - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: path: all - name: Merge files