From 9674432ce23de7c2d7a7ad39ec98e60565b6004d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 07:04:17 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/Component.BuildTest.yml | 2 +- .github/workflows/add-labels.yml | 4 ++-- .github/workflows/ci.yml | 6 +++--- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/concurrency-tests.yml | 2 +- .github/workflows/docfx.yml | 2 +- .github/workflows/dotnet-format.yml | 4 ++-- .github/workflows/fossa.yml | 2 +- .github/workflows/markdownlint.yml | 2 +- .github/workflows/package-validation.yml | 4 ++-- .github/workflows/post-release.yml | 4 ++-- .github/workflows/prepare-release.yml | 10 +++++----- .github/workflows/publish-packages-1.0.yml | 4 ++-- .github/workflows/sanitycheck.yml | 4 ++-- .github/workflows/verifyaotcompat.yml | 2 +- 15 files changed, 27 insertions(+), 27 deletions(-) diff --git a/.github/workflows/Component.BuildTest.yml b/.github/workflows/Component.BuildTest.yml index 863ba8660c4..d039af902f9 100644 --- a/.github/workflows/Component.BuildTest.yml +++ b/.github/workflows/Component.BuildTest.yml @@ -46,7 +46,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: # Note: By default GitHub only fetches 1 commit. MinVer needs to find # the version tag which is typically NOT on the first commit so we diff --git a/.github/workflows/add-labels.yml b/.github/workflows/add-labels.yml index 48639374fb2..66b352d3fce 100644 --- a/.github/workflows/add-labels.yml +++ b/.github/workflows/add-labels.yml @@ -18,7 +18,7 @@ jobs: steps: - name: check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Add labels for package found in bug issue descriptions shell: pwsh @@ -39,7 +39,7 @@ jobs: steps: - name: check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.event.repository.default_branch }} # Note: Do not run on the PR branch we want to execute add-labels.psm1 from main on the base repo only because pull_request_target can see secrets diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5640ee079b5..6a6eb883324 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: outputs: changes: ${{ steps.changes.outputs.changes }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: AurorNZ/paths-filter@v4 id: changes with: @@ -113,7 +113,7 @@ jobs: matrix: version: [ net8.0, net9.0 ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Run OTLP Exporter docker compose run: docker compose --file=test/OpenTelemetry.Exporter.OpenTelemetryProtocol.Tests/IntegrationTest/docker-compose.yml --file=build/docker-compose.${{ matrix.version }}.yml --project-directory=. up --exit-code-from=tests --build @@ -131,7 +131,7 @@ jobs: matrix: version: [ net8.0, net9.0 ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Run W3C Trace Context docker compose run: docker compose --file=test/OpenTelemetry.Instrumentation.W3cTraceContext.Tests/docker-compose.yml --file=build/docker-compose.${{ matrix.version }}.yml --project-directory=. up --exit-code-from=tests --build diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 3cdd6a57b6d..31551c29f07 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -29,7 +29,7 @@ jobs: disk-root: "D:" - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Initialize CodeQL uses: github/codeql-action/init@v3 diff --git a/.github/workflows/concurrency-tests.yml b/.github/workflows/concurrency-tests.yml index 907d7260049..43b21517ead 100644 --- a/.github/workflows/concurrency-tests.yml +++ b/.github/workflows/concurrency-tests.yml @@ -17,7 +17,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Setup dotnet uses: actions/setup-dotnet@v4 diff --git a/.github/workflows/docfx.yml b/.github/workflows/docfx.yml index 76ab4f2e1ec..eb54284d568 100644 --- a/.github/workflows/docfx.yml +++ b/.github/workflows/docfx.yml @@ -11,7 +11,7 @@ jobs: steps: - name: check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup dotnet uses: actions/setup-dotnet@v4 diff --git a/.github/workflows/dotnet-format.yml b/.github/workflows/dotnet-format.yml index 2ea4834570f..e469da23ec0 100644 --- a/.github/workflows/dotnet-format.yml +++ b/.github/workflows/dotnet-format.yml @@ -11,7 +11,7 @@ jobs: steps: - name: check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup dotnet uses: actions/setup-dotnet@v4 @@ -29,7 +29,7 @@ jobs: steps: - name: check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup dotnet uses: actions/setup-dotnet@v4 diff --git a/.github/workflows/fossa.yml b/.github/workflows/fossa.yml index 3beaa09b775..19772927f6e 100644 --- a/.github/workflows/fossa.yml +++ b/.github/workflows/fossa.yml @@ -12,7 +12,7 @@ jobs: fossa: runs-on: ubuntu-latest steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 - uses: fossas/fossa-action@93a52ecf7c3ac7eb40f5de77fd69b1a19524de94 # v1.5.0 with: diff --git a/.github/workflows/markdownlint.yml b/.github/workflows/markdownlint.yml index b013c52a57a..648e84d5077 100644 --- a/.github/workflows/markdownlint.yml +++ b/.github/workflows/markdownlint.yml @@ -11,7 +11,7 @@ jobs: steps: - name: check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: run markdownlint uses: DavidAnson/markdownlint-cli2-action@v19.1.0 diff --git a/.github/workflows/package-validation.yml b/.github/workflows/package-validation.yml index d1f7658ee2d..4709ac81fea 100644 --- a/.github/workflows/package-validation.yml +++ b/.github/workflows/package-validation.yml @@ -10,7 +10,7 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: # Note: By default GitHub only fetches 1 commit. MinVer needs to find # the version tag which is typically NOT on the first commit so we @@ -27,7 +27,7 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: # Note: By default GitHub only fetches 1 commit. MinVer needs to find # the version tag which is typically NOT on the first commit so we diff --git a/.github/workflows/post-release.yml b/.github/workflows/post-release.yml index bb67ead1e47..1926337c46d 100644 --- a/.github/workflows/post-release.yml +++ b/.github/workflows/post-release.yml @@ -41,7 +41,7 @@ jobs: steps: - name: check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: token: ${{ secrets[needs.automation.outputs.token-secret-name] }} ref: ${{ github.event.repository.default_branch }} @@ -75,7 +75,7 @@ jobs: GH_TOKEN: ${{ secrets[needs.automation.outputs.token-secret-name] }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: # Note: By default GitHub only fetches 1 commit. We need all the tags # for this work. diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml index fbccc656063..5ea7d827c2e 100644 --- a/.github/workflows/prepare-release.yml +++ b/.github/workflows/prepare-release.yml @@ -40,7 +40,7 @@ jobs: steps: - name: check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: token: ${{ secrets[needs.automation.outputs.token-secret-name] }} @@ -76,7 +76,7 @@ jobs: steps: - name: check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: token: ${{ secrets[needs.automation.outputs.token-secret-name] }} @@ -110,7 +110,7 @@ jobs: steps: - name: check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: # Note: By default GitHub only fetches 1 commit which fails the git tag operation below fetch-depth: 0 @@ -149,7 +149,7 @@ jobs: steps: - name: check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: # Note: By default GitHub only fetches 1 commit which fails the git tag operation below fetch-depth: 0 @@ -188,7 +188,7 @@ jobs: steps: - name: check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: # Note: By default GitHub only fetches 1 commit which fails the git tag operation below fetch-depth: 0 diff --git a/.github/workflows/publish-packages-1.0.yml b/.github/workflows/publish-packages-1.0.yml index 1d4d699381b..d901f1c2fc9 100644 --- a/.github/workflows/publish-packages-1.0.yml +++ b/.github/workflows/publish-packages-1.0.yml @@ -35,7 +35,7 @@ jobs: artifact-id: ${{ steps.upload-artifacts.outputs.artifact-id }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: # Note: By default GitHub only fetches 1 commit. MinVer needs to find # the version tag which is typically NOT on the first commit so we @@ -104,7 +104,7 @@ jobs: steps: - name: check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: token: ${{ secrets[needs.automation.outputs.token-secret-name] }} diff --git a/.github/workflows/sanitycheck.yml b/.github/workflows/sanitycheck.yml index 335d389a9c7..a4ad3377dee 100644 --- a/.github/workflows/sanitycheck.yml +++ b/.github/workflows/sanitycheck.yml @@ -11,7 +11,7 @@ jobs: steps: - name: check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: install misspell run: | @@ -26,7 +26,7 @@ jobs: steps: - name: check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: detect non-ASCII encoding and trailing space run: python3 ./build/scripts/sanitycheck.py diff --git a/.github/workflows/verifyaotcompat.yml b/.github/workflows/verifyaotcompat.yml index b85eaf5ca2d..dfcace12140 100644 --- a/.github/workflows/verifyaotcompat.yml +++ b/.github/workflows/verifyaotcompat.yml @@ -16,7 +16,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Setup dotnet uses: actions/setup-dotnet@v4