From 921745f90d7337e82506a8e5c5a6190f6a331eef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 23:10:49 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 6.0.0 to 7.0.0 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6.0.0 to 7.0.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/b7c566a772e6b6bfb58ed0dc250532a479d7789f...bbbca2ddaa5d8feaa63e36b76fdaad77386f024f) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 20 ++++++++++---------- .github/workflows/test_node.yml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 64492d0a7d..2068eeac67 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,7 +47,7 @@ jobs: - name: Rename Binary run: mv target/${{ matrix.target }}/release/sentry-cli sentry-cli-Linux-${{ matrix.arch }} - - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # 6.0.0 + - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # 7.0.0 with: name: artifact-bin-linux-${{ matrix.arch }} path: sentry-cli-Linux-${{ matrix.arch }} @@ -109,7 +109,7 @@ jobs: - name: Rename Binary run: mv target/${{ matrix.target }}/release/sentry-cli sentry-cli-Darwin-${{ matrix.arch }} - - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # 6.0.0 + - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # 7.0.0 with: name: unsigned-bin-macos-${{ matrix.arch }} path: sentry-cli-Darwin-${{ matrix.arch }} @@ -129,7 +129,7 @@ jobs: - name: Link universal binary run: lipo -create -output sentry-cli-Darwin-universal sentry-cli-Darwin-x86_64 sentry-cli-Darwin-arm64 - - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # 6.0.0 + - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # 7.0.0 with: name: unsigned-bin-macos-universal path: sentry-cli-Darwin-universal @@ -199,7 +199,7 @@ jobs: sentry-cli-Darwin-${{ matrix.arch }}.zip - name: Upload signed binary - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # 6.0.0 + uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # 7.0.0 with: name: artifact-bin-macos-${{ matrix.arch }} path: sentry-cli-Darwin-${{ matrix.arch }} @@ -238,7 +238,7 @@ jobs: - name: Rename Binary run: mv target/${{ env.TARGET }}/release/sentry-cli.exe sentry-cli-Windows-${{ matrix.arch }}.exe - - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # 6.0.0 + - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # 7.0.0 with: name: artifact-bin-windows-${{ matrix.arch }} path: sentry-cli-Windows-${{ matrix.arch }}.exe @@ -273,7 +273,7 @@ jobs: - run: npm pack - - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # 6.0.0 + - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # 7.0.0 with: name: artifact-pkg-node path: '*.tgz' @@ -290,7 +290,7 @@ jobs: with: python-version: '3.11' - run: python3 -m pip install build && python3 -m build - - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # 6.0.0 + - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # 7.0.0 with: name: python-base path: dist/* @@ -316,7 +316,7 @@ jobs: merge-multiple: true path: python-base - run: scripts/wheels --binaries binaries --base python-base --dest dist - - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # 6.0.0 + - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # 7.0.0 with: name: artifact-pkg-python path: dist/* @@ -359,7 +359,7 @@ jobs: done - name: Upload packaged npm binary distributions - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # 6.0.0 + uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # 7.0.0 with: name: artifact-npm-binary-distributions path: npm-binary-distributions/*/*.tgz @@ -426,7 +426,7 @@ jobs: runs-on: ubuntu-24.04 needs: [linux, sign-macos-binaries, windows, npm-distributions, node, python] steps: - - uses: actions/upload-artifact/merge@b7c566a772e6b6bfb58ed0dc250532a479d7789f # 6.0.0 + - uses: actions/upload-artifact/merge@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # 7.0.0 with: # Craft expects release assets to be a single artifact named after the sha. name: ${{ github.sha }} diff --git a/.github/workflows/test_node.yml b/.github/workflows/test_node.yml index bd5216fde5..19b7ee8a26 100644 --- a/.github/workflows/test_node.yml +++ b/.github/workflows/test_node.yml @@ -62,7 +62,7 @@ jobs: - name: Build run: npm run build - - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # 6.0.0 + - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # 7.0.0 with: name: artifact-build path: js