From 27fe39329f35c8627094504b4fb4abc3ba791638 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 19:32:51 +0000 Subject: [PATCH] Bump actions/upload-artifact from 5 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cifuzz.yml | 2 +- .github/workflows/nodejs.yml | 2 +- .github/workflows/python.yml | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml index fd7cc7f3e..a7635ef08 100644 --- a/.github/workflows/cifuzz.yml +++ b/.github/workflows/cifuzz.yml @@ -19,7 +19,7 @@ jobs: dry-run: false language: go - name: Upload Crash - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: failure() && steps.build.outcome == 'success' with: name: artifacts diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 496668ef5..7771ab7b9 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -146,7 +146,7 @@ jobs: run: npm run build:go - name: Upload artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: prebuild-${{ matrix.goos }}-${{ matrix.goarch }} path: bindings/js/build/${{ matrix.goos }}-${{ matrix.goarch }} diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 44a3b852e..76b354ccc 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -38,7 +38,7 @@ jobs: CIBW_MANYLINUX_AARCH64_IMAGE: quay.io/pypa/manylinux_2_28_aarch64 CIBW_BEFORE_ALL: .ci/ensure-go.sh; make -C bindings/py compile - name: Upload wheels - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: wheels-linux-${{ matrix.go_target }} path: ./wheelhouse/*.whl @@ -74,7 +74,7 @@ jobs: env: CIBW_ARCHS: ${{ matrix.cibw_target }} - name: Upload wheels - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: wheels-windows-${{ matrix.go_target }} path: ./wheelhouse/*.whl @@ -109,7 +109,7 @@ jobs: env: CIBW_ARCHS: ${{ matrix.cibw_target }} - name: Upload wheels - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: wheels-macos-${{ matrix.go_target }} path: ./wheelhouse/*.whl @@ -132,7 +132,7 @@ jobs: - name: Build package run: make -C bindings/py build - name: Upload sdist - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: wheels path: bindings/py/dist/*