From 0ea386e22d7108556e12d512d1cba805d4e5b92f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 09:27:35 +0000 Subject: [PATCH] ci(deps): bump actions/upload-artifact from 4 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release-artifacts.yml | 4 ++-- .github/workflows/rust.yml | 2 +- .github/workflows/sdk-csharp-test.yml | 2 +- .github/workflows/sdk-javascript-test.yml | 2 +- .github/workflows/sdk-python-test.yml | 2 +- .github/workflows/sdk-typescript-test.yml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) mode change 100755 => 100644 .github/workflows/release-artifacts.yml mode change 100755 => 100644 .github/workflows/rust.yml mode change 100755 => 100644 .github/workflows/sdk-csharp-test.yml mode change 100755 => 100644 .github/workflows/sdk-javascript-test.yml mode change 100755 => 100644 .github/workflows/sdk-python-test.yml mode change 100755 => 100644 .github/workflows/sdk-typescript-test.yml diff --git a/.github/workflows/release-artifacts.yml b/.github/workflows/release-artifacts.yml old mode 100755 new mode 100644 index e5f59b041..5d089bba5 --- a/.github/workflows/release-artifacts.yml +++ b/.github/workflows/release-artifacts.yml @@ -26,7 +26,7 @@ jobs: pnpm install --frozen-lockfile pnpm build - name: Upload dashboard artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: dashboard-dist path: dashboard/dist @@ -100,7 +100,7 @@ jobs: cp target/${{ matrix.target }}/release/vectorizer binaries/linux-${{ matrix.arch }}/ chmod +x binaries/linux-${{ matrix.arch }}/vectorizer - name: Upload linux binary for Docker - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: linux-binaries-${{ matrix.arch }} path: binaries/linux-${{ matrix.arch }} diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml old mode 100755 new mode 100644 index 2605d80dd..b31fe1905 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -80,7 +80,7 @@ jobs: - name: Run doc tests run: cargo test --workspace --doc - name: Upload test report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: junit-${{ matrix.os }}.xml diff --git a/.github/workflows/sdk-csharp-test.yml b/.github/workflows/sdk-csharp-test.yml old mode 100755 new mode 100644 index bd8c30776..0889a4797 --- a/.github/workflows/sdk-csharp-test.yml +++ b/.github/workflows/sdk-csharp-test.yml @@ -65,7 +65,7 @@ jobs: SKIP_S2S_TESTS: true - name: Upload test results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: csharp-test-results-${{ matrix.os }} diff --git a/.github/workflows/sdk-javascript-test.yml b/.github/workflows/sdk-javascript-test.yml old mode 100755 new mode 100644 index b89dc5f88..0a35ddf01 --- a/.github/workflows/sdk-javascript-test.yml +++ b/.github/workflows/sdk-javascript-test.yml @@ -57,7 +57,7 @@ jobs: VITEST_SKIP_S2S: true - name: Upload test results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: javascript-test-results-${{ matrix.os }}-${{ matrix.node-version }} diff --git a/.github/workflows/sdk-python-test.yml b/.github/workflows/sdk-python-test.yml old mode 100755 new mode 100644 index 0987b2929..61123ca4a --- a/.github/workflows/sdk-python-test.yml +++ b/.github/workflows/sdk-python-test.yml @@ -73,7 +73,7 @@ jobs: PYTHONPATH: ${{ github.workspace }}/sdks/python - name: Upload test results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: python-test-results-${{ matrix.os }}-py${{ matrix.python-version }} diff --git a/.github/workflows/sdk-typescript-test.yml b/.github/workflows/sdk-typescript-test.yml old mode 100755 new mode 100644 index a96edd483..04a65125e --- a/.github/workflows/sdk-typescript-test.yml +++ b/.github/workflows/sdk-typescript-test.yml @@ -58,7 +58,7 @@ jobs: VITEST_SKIP_S2S: true - name: Upload test results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: typescript-test-results-${{ matrix.os }}-${{ matrix.node-version }}