From 111de40297fd60f7351433470a66020fcafcebcd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Jun 2026 10:59:40 +0200 Subject: [PATCH] build(deps): bump actions/checkout from 6.0.2 to 6.0.3 (#9273) Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 6.0.3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/de0fac2e4500dabe0009e67214ff5f5447ce83dd...df4cb1c069e1874edd31b4311f1884172cec0e10) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/codespell.yml | 2 +- .github/workflows/coverage.yml | 6 +++--- .github/workflows/dev-docker-image-build-gpu.yml | 2 +- .github/workflows/dev-docker-image-build.yml | 4 ++-- .github/workflows/docker-image.yml | 4 ++-- .github/workflows/edge-py-release.yml | 8 ++++---- .github/workflows/edge-rust-release.yml | 4 ++-- .github/workflows/edge-test.yml | 2 +- .github/workflows/integration-tests.yml | 12 ++++++------ .github/workflows/io-bridge-object-store-tests.yml | 2 +- .github/workflows/long-e2e-tests.yml | 2 +- .github/workflows/release-artifacts.yml | 8 ++++---- .github/workflows/rust-gpu.yml | 4 ++-- .github/workflows/rust-lint.yml | 2 +- .github/workflows/rust.yml | 4 ++-- 15 files changed, 33 insertions(+), 33 deletions(-) diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index ada2b316e5..ea3359b6a3 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Install Codespell run: python -m pip install --upgrade 'codespell[toml]' diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 1c35728f82..35feaed3d4 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -16,7 +16,7 @@ jobs: uses: dtolnay/rust-toolchain@631a55b12751854ce901bb631d5902ceb48146f7 # stable with: components: llvm-tools-preview - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: # If scheduled by cron, run for dev branch, Otherwise specified branch (for workflow dispatch & push) ref: ${{ github.event_name == 'schedule' && 'dev' || github.ref_name }} @@ -44,7 +44,7 @@ jobs: uses: dtolnay/rust-toolchain@631a55b12751854ce901bb631d5902ceb48146f7 # stable with: components: llvm-tools-preview - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: # If scheduled by cron, run for dev branch, Otherwise specified branch (for workflow dispatch & push) ref: ${{ github.event_name == 'schedule' && 'dev' || github.ref_name }} @@ -80,7 +80,7 @@ jobs: needs: [unit-coverage, integration-coverage] runs-on: ubuntu-latest steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: # If scheduled by cron, run for dev branch, Otherwise specified branch (for workflow dispatch & push) ref: ${{ github.event_name == 'schedule' && 'dev' || github.ref_name }} diff --git a/.github/workflows/dev-docker-image-build-gpu.yml b/.github/workflows/dev-docker-image-build-gpu.yml index ff2e9757af..b9466c2b35 100644 --- a/.github/workflows/dev-docker-image-build-gpu.yml +++ b/.github/workflows/dev-docker-image-build-gpu.yml @@ -7,7 +7,7 @@ jobs: branch-gpu-build-and-push: runs-on: [self-hosted, linux, x64] steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: ref: ${{ github.ref_name }} - uses: ./.github/actions/branch-build-and-push diff --git a/.github/workflows/dev-docker-image-build.yml b/.github/workflows/dev-docker-image-build.yml index 117fc035ec..9586c9ee5a 100644 --- a/.github/workflows/dev-docker-image-build.yml +++ b/.github/workflows/dev-docker-image-build.yml @@ -14,7 +14,7 @@ jobs: if: ${{ !github.event.client_payload.triggered }} runs-on: [self-hosted, linux, x64] steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: ref: ${{ github.ref_name }} - uses: ./.github/actions/branch-build-and-push @@ -31,7 +31,7 @@ jobs: if: ${{ github.event.client_payload.triggered }} runs-on: [self-hosted, linux, x64] steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: ref: ${{ github.event.client_payload.version }} - uses: ./.github/actions/branch-build-and-push diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 4ec9f0ad7a..ea04bab468 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -16,7 +16,7 @@ jobs: packages: write id-token: write # needed for cosign keyless signing with OIDC steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 - name: Install cosign uses: sigstore/cosign-installer@6f9f17788090df1f26f669e9d70d6ae9567deba6 # v4.1.2 @@ -85,7 +85,7 @@ jobs: packages: write id-token: write # needed for cosign keyless signing with OIDC steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 - name: Install cosign uses: sigstore/cosign-installer@6f9f17788090df1f26f669e9d70d6ae9567deba6 # v4.1.2 diff --git a/.github/workflows/edge-py-release.yml b/.github/workflows/edge-py-release.yml index 84471bd539..8823e494b9 100644 --- a/.github/workflows/edge-py-release.yml +++ b/.github/workflows/edge-py-release.yml @@ -41,7 +41,7 @@ jobs: steps: - name: Checkout Qdrant - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Build Python wheel uses: PyO3/maturin-action@e83996d129638aa358a18fbd1dfb82f0b0fb5d3b # v1.51.0 @@ -83,7 +83,7 @@ jobs: python-version: ${{ matrix.python.version || matrix.python }} - name: Checkout Qdrant - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Build Python wheel uses: PyO3/maturin-action@e83996d129638aa358a18fbd1dfb82f0b0fb5d3b # v1.51.0 @@ -124,7 +124,7 @@ jobs: python-version: ${{ matrix.python.version || matrix.python }} - name: Checkout Qdrant - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Build Python wheel uses: PyO3/maturin-action@e83996d129638aa358a18fbd1dfb82f0b0fb5d3b # v1.51.0 @@ -164,7 +164,7 @@ jobs: steps: - name: Checkout Qdrant - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Install Just uses: ./.github/actions/setup-just diff --git a/.github/workflows/edge-rust-release.yml b/.github/workflows/edge-rust-release.yml index 04afb269f5..3e8e71bcd9 100644 --- a/.github/workflows/edge-rust-release.yml +++ b/.github/workflows/edge-rust-release.yml @@ -28,7 +28,7 @@ jobs: steps: - name: Checkout Qdrant - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Install Rust uses: dtolnay/rust-toolchain@631a55b12751854ce901bb631d5902ceb48146f7 # stable @@ -91,7 +91,7 @@ jobs: run: uv tool install ast-grep-cli - name: Checkout Qdrant - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Amalgamate run: uv run lib/edge/publish/amalgamate.py diff --git a/.github/workflows/edge-test.yml b/.github/workflows/edge-test.yml index 6fb2c1137d..0b590fdae5 100644 --- a/.github/workflows/edge-test.yml +++ b/.github/workflows/edge-test.yml @@ -25,7 +25,7 @@ jobs: steps: - name: Checkout Qdrant - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Install Rust nightly (for fmt) uses: dtolnay/rust-toolchain@0f1b44df7e9cbb178d781a242338dfa5e243ad7f # nightly diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index bde3872b98..3f2c972716 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Install minimal stable uses: dtolnay/rust-toolchain@631a55b12751854ce901bb631d5902ceb48146f7 # stable - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Install Protoc uses: ./.github/actions/setup-protoc - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 @@ -46,7 +46,7 @@ jobs: steps: - name: Install minimal stable uses: dtolnay/rust-toolchain@631a55b12751854ce901bb631d5902ceb48146f7 # stable - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Install Protoc uses: ./.github/actions/setup-protoc - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 @@ -84,7 +84,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 with: python-version: '3.13' @@ -120,7 +120,7 @@ jobs: steps: - name: Install minimal stable uses: dtolnay/rust-toolchain@631a55b12751854ce901bb631d5902ceb48146f7 # stable - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 with: shared-key: integration-tests @@ -171,7 +171,7 @@ jobs: - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 with: shared-key: integration-tests - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Install Protoc uses: ./.github/actions/setup-protoc - name: Install dependencies @@ -223,7 +223,7 @@ jobs: AWS_EC2_METADATA_DISABLED: "true" run: echo $(aws --endpoint-url http://127.0.0.1:9000/ s3 mb s3://test-bucket) - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: lfs: true # Fetch LFS files automatically - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 diff --git a/.github/workflows/io-bridge-object-store-tests.yml b/.github/workflows/io-bridge-object-store-tests.yml index 53a0324b87..66a0fca78a 100644 --- a/.github/workflows/io-bridge-object-store-tests.yml +++ b/.github/workflows/io-bridge-object-store-tests.yml @@ -30,7 +30,7 @@ jobs: RUSTFS_SECRET_KEY: ci-test-secret-not-for-prod steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 - name: Wait for rustfs to be ready run: | diff --git a/.github/workflows/long-e2e-tests.yml b/.github/workflows/long-e2e-tests.yml index d3b0a60514..081093c454 100644 --- a/.github/workflows/long-e2e-tests.yml +++ b/.github/workflows/long-e2e-tests.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: ref: ${{ github.event_name == 'schedule' && 'dev' || github.ref_name }} lfs: true # Fetch LFS files automatically diff --git a/.github/workflows/release-artifacts.yml b/.github/workflows/release-artifacts.yml index 61b47effdf..400fee1186 100644 --- a/.github/workflows/release-artifacts.yml +++ b/.github/workflows/release-artifacts.yml @@ -29,7 +29,7 @@ jobs: rustup update rustup show cargo -Vv - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Install Protoc uses: ./.github/actions/setup-protoc - name: Install Rust toolchain @@ -78,7 +78,7 @@ jobs: rustup update rustup show cargo -Vv - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Build and publish uses: taiki-e/upload-rust-binary-action@f0d45ae91ee7b8ee928de7a9d04d893a08bcbec6 # v1.30.2 with: @@ -94,7 +94,7 @@ jobs: steps: - name: Install minimal stable uses: dtolnay/rust-toolchain@631a55b12751854ce901bb631d5902ceb48146f7 # stable - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 - name: Install Protoc uses: ./.github/actions/setup-protoc @@ -114,7 +114,7 @@ jobs: - os: ubuntu-22.04 runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Install dependencies run: | diff --git a/.github/workflows/rust-gpu.yml b/.github/workflows/rust-gpu.yml index 70543c5b80..4edce11756 100644 --- a/.github/workflows/rust-gpu.yml +++ b/.github/workflows/rust-gpu.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Install minimal stable uses: dtolnay/rust-toolchain@631a55b12751854ce901bb631d5902ceb48146f7 # stable - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 - name: Install Protoc uses: ./.github/actions/setup-protoc @@ -75,7 +75,7 @@ jobs: echo $delimiter >> $GITHUB_OUTPUT - name: pull issue template if: ${{ steps.process-test-report.outputs.has_flaky_tests == 'true' }} - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: sparse-checkout: | .github/ISSUE_TEMPLATE/flaky_test.md diff --git a/.github/workflows/rust-lint.yml b/.github/workflows/rust-lint.yml index b2b7d19b57..c7eed4cc6d 100644 --- a/.github/workflows/rust-lint.yml +++ b/.github/workflows/rust-lint.yml @@ -23,7 +23,7 @@ jobs: uses: dtolnay/rust-toolchain@631a55b12751854ce901bb631d5902ceb48146f7 # stable with: components: rustfmt, clippy - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Install Protoc uses: ./.github/actions/setup-protoc - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7aad644966..dbf67db512 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Install minimal stable uses: dtolnay/rust-toolchain@631a55b12751854ce901bb631d5902ceb48146f7 # stable - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 - name: Install Protoc uses: ./.github/actions/setup-protoc @@ -82,7 +82,7 @@ jobs: echo $delimiter >> $GITHUB_OUTPUT - name: pull issue template if: ${{ steps.process-test-report.outputs.has_flaky_tests == 'true' }} - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: sparse-checkout: | .github/ISSUE_TEMPLATE/flaky_test.md