From 4e80e6bf217f934ed73fa4140a9d3664a12b2ced Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 23 Jan 2026 10:03:19 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 6.0.1 to 6.0.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.1 to 6.0.2. - [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/8e8c483db84b4bee98b60c0593521ed34d9990e8...de0fac2e4500dabe0009e67214ff5f5447ce83dd) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/beta.yml | 2 +- .github/workflows/coverage.yml | 4 ++-- .github/workflows/fuzzers.yml | 4 ++-- .github/workflows/markdown.yml | 2 +- .github/workflows/nightly.yml | 2 +- .github/workflows/pr.yml | 12 ++++++------ .github/workflows/release-weekly.yml | 2 +- .github/workflows/release.yml | 6 +++--- .github/workflows/shellcheck.yml | 2 +- .github/workflows/toolchain.yml | 4 ++-- 10 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index d817f5dab9..9be52f64ad 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -28,7 +28,7 @@ jobs: continue-on-error: true steps: - run: rustup toolchain install --profile=minimal beta - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - run: git config --global --add safe.directory "$PWD" # actions/runner#2033 - run: just toolchain=beta fetch - run: just toolchain=beta build diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index a1e20453f1..4272838010 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -23,7 +23,7 @@ jobs: timeout-minutes: 5 runs-on: ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }} steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - id: changed uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891 with: @@ -48,7 +48,7 @@ jobs: env: CXX: "/usr/bin/clang++-19" steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 - run: cargo tarpaulin --locked --workspace --exclude=linkerd2-proxy --exclude=linkerd-transport-header --exclude=spire-proto --no-run - run: cargo tarpaulin --locked --workspace --exclude=linkerd2-proxy --exclude=linkerd-transport-header --exclude=spire-proto --skip-clean --ignore-tests --no-fail-fast --out=Xml diff --git a/.github/workflows/fuzzers.yml b/.github/workflows/fuzzers.yml index c8b65f4a9d..4013d1411e 100644 --- a/.github/workflows/fuzzers.yml +++ b/.github/workflows/fuzzers.yml @@ -30,7 +30,7 @@ jobs: container: docker://rust:1.90.0 steps: - run: apt update && apt install -y jo - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - run: git config --global --add safe.directory "$PWD" # actions/runner#2033 - uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891 id: changed-files @@ -55,7 +55,7 @@ jobs: steps: - run: rustup toolchain add nightly - run: cargo install cargo-fuzz - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - run: git config --global --add safe.directory "$PWD" # actions/runner#2033 - working-directory: ${{matrix.dir}} run: cargo +nightly fetch diff --git a/.github/workflows/markdown.yml b/.github/workflows/markdown.yml index 8a2fba79d4..d5094e53da 100644 --- a/.github/workflows/markdown.yml +++ b/.github/workflows/markdown.yml @@ -14,7 +14,7 @@ jobs: timeout-minutes: 5 runs-on: ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }} steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - uses: DavidAnson/markdownlint-cli2-action@07035fd053f7be764496c0f8d8f9f41f98305101 with: globs: "**/*.md" diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 22f26bf685..081da9f958 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -28,7 +28,7 @@ jobs: continue-on-error: true steps: - run: rustup toolchain install --profile=minimal nightly - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - run: git config --global --add safe.directory "$PWD" # actions/runner#2033 - run: just toolchain=nightly fetch - run: just toolchain=nightly profile=release build diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index c57d94dae7..8ef585ff23 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -16,7 +16,7 @@ jobs: timeout-minutes: 5 runs-on: ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }} steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - id: build uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891 with: @@ -77,7 +77,7 @@ jobs: runs-on: ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }} steps: - uses: linkerd/dev/actions/setup-tools@v48 - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - run: just action-lint - run: just action-dev-check @@ -91,7 +91,7 @@ jobs: timeout-minutes: 20 steps: - run: git config --global --add safe.directory "$PWD" # actions/runner#2033 - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 - run: just fetch - run: cargo deny --all-features check bans licenses sources @@ -114,7 +114,7 @@ jobs: crate: ${{ fromJson(needs.meta.outputs.cargo_crates) }} steps: - run: git config --global --add safe.directory "$PWD" # actions/runner#2033 - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 - run: just fetch - run: just check-crate ${{ matrix.crate }} @@ -136,7 +136,7 @@ jobs: tag=$(linkerd version --client --short) echo "linkerd $tag" echo "LINKERD_TAG=$tag" >> "$GITHUB_ENV" - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - run: just docker - run: just k3d-create - run: just k3d-load-linkerd @@ -168,7 +168,7 @@ jobs: if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') run: exit 1 - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd if: needs.meta.outputs.is_dependabot == 'true' && needs.meta.outputs.any_changed == 'true' - name: "Merge dependabot changes" if: needs.meta.outputs.is_dependabot == 'true' && needs.meta.outputs.any_changed == 'true' diff --git a/.github/workflows/release-weekly.yml b/.github/workflows/release-weekly.yml index 64132f1281..fdbdd6746f 100644 --- a/.github/workflows/release-weekly.yml +++ b/.github/workflows/release-weekly.yml @@ -44,7 +44,7 @@ jobs: runs-on: ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }} timeout-minutes: 5 steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - name: Check if the most recent commit is after the last release id: recency env: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8d57c12e2b..b6fddce1df 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -61,7 +61,7 @@ jobs: timeout-minutes: 5 runs-on: ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }} steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd if: github.event_name == 'pull_request' - id: workflow if: github.event_name == 'pull_request' @@ -170,7 +170,7 @@ jobs: - name: Configure git run: git config --global --add safe.directory "$PWD" # actions/runner#2033 - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd with: ref: ${{ needs.meta.outputs.ref }} - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 @@ -204,7 +204,7 @@ jobs: git config --global user.name "$GITHUB_USERNAME" git config --global user.email "$GITHUB_USERNAME"@users.noreply.github.com # Tag the release. - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd with: token: ${{ secrets.LINKERD2_PROXY_GITHUB_TOKEN || github.token }} ref: ${{ needs.meta.outputs.ref }} diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml index ebbf3a6619..07da9e18d4 100644 --- a/.github/workflows/shellcheck.yml +++ b/.github/workflows/shellcheck.yml @@ -16,5 +16,5 @@ jobs: runs-on: ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }} steps: - uses: linkerd/dev/actions/setup-tools@v48 - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - run: just sh-lint diff --git a/.github/workflows/toolchain.yml b/.github/workflows/toolchain.yml index 78f160a09a..075a345d46 100644 --- a/.github/workflows/toolchain.yml +++ b/.github/workflows/toolchain.yml @@ -16,7 +16,7 @@ jobs: runs-on: ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }} container: ghcr.io/linkerd/dev:v48-rust steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - run: git config --global --add safe.directory "$PWD" # actions/runner#2033 - run: | VERSION_REGEX='channel = "([0-9]+\.[0-9]+\.[0-9]+)"' @@ -38,7 +38,7 @@ jobs: runs-on: ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }} steps: - uses: linkerd/dev/actions/setup-tools@v48 - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - shell: bash run: | VERSION_REGEX='channel = "([0-9]+\.[0-9]+\.[0-9]+)"'