From 25166afe9836feb2059ce12e89e675d5c3e52533 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 26 Nov 2025 16:50:49 -0500 Subject: [PATCH] Bump actions/checkout from 5 to 6 (#2474) Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [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/v5...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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/auto-close-duplicates.yml | 2 +- .github/workflows/auto-close-needs-mre.yml | 2 +- .github/workflows/martian-issue-triage.yml | 2 +- .github/workflows/martian-test-failure.yml | 2 +- .github/workflows/marvin-dedupe-issues.yml | 2 +- .github/workflows/marvin-label-triage.yml | 2 +- .github/workflows/marvin.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/run-static.yml | 2 +- .github/workflows/run-tests.yml | 6 +++--- .github/workflows/update-config-schema.yml | 2 +- .github/workflows/update-sdk-docs.yml | 2 +- 12 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/auto-close-duplicates.yml b/.github/workflows/auto-close-duplicates.yml index c2ee3dfb3..d358a3a1e 100644 --- a/.github/workflows/auto-close-duplicates.yml +++ b/.github/workflows/auto-close-duplicates.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Generate Marvin App token id: marvin-token diff --git a/.github/workflows/auto-close-needs-mre.yml b/.github/workflows/auto-close-needs-mre.yml index 98d26ccff..4338c58d8 100644 --- a/.github/workflows/auto-close-needs-mre.yml +++ b/.github/workflows/auto-close-needs-mre.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Generate Marvin App token id: marvin-token diff --git a/.github/workflows/martian-issue-triage.yml b/.github/workflows/martian-issue-triage.yml index 8669eefdd..d9c58220c 100644 --- a/.github/workflows/martian-issue-triage.yml +++ b/.github/workflows/martian-issue-triage.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout base repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ github.repository }} ref: ${{ github.event.repository.default_branch }} diff --git a/.github/workflows/martian-test-failure.yml b/.github/workflows/martian-test-failure.yml index bd12de7e3..bd0df80a2 100644 --- a/.github/workflows/martian-test-failure.yml +++ b/.github/workflows/martian-test-failure.yml @@ -23,7 +23,7 @@ jobs: actions: read # Required for Claude to read CI results steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 1 diff --git a/.github/workflows/marvin-dedupe-issues.yml b/.github/workflows/marvin-dedupe-issues.yml index 0f8b5c315..d95460ecd 100644 --- a/.github/workflows/marvin-dedupe-issues.yml +++ b/.github/workflows/marvin-dedupe-issues.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Generate Marvin App token id: marvin-token diff --git a/.github/workflows/marvin-label-triage.yml b/.github/workflows/marvin-label-triage.yml index 8c13ef64a..e04cb8137 100644 --- a/.github/workflows/marvin-label-triage.yml +++ b/.github/workflows/marvin-label-triage.yml @@ -28,7 +28,7 @@ jobs: steps: - name: Checkout base repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ github.repository }} ref: ${{ github.event.repository.default_branch }} diff --git a/.github/workflows/marvin.yml b/.github/workflows/marvin.yml index 51674e615..2693e42f4 100644 --- a/.github/workflows/marvin.yml +++ b/.github/workflows/marvin.yml @@ -31,7 +31,7 @@ jobs: (github.event_name == 'issues' && github.event.action == 'labeled' && github.event.label.name == 'marvin') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 # Install UV package manager - name: Install UV diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2a7f3adc9..5f2fe8d53 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,7 +12,7 @@ jobs: id-token: write # For PyPI's trusted publishing steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/run-static.yml b/.github/workflows/run-static.yml index 2551c49b1..b8e230902 100644 --- a/.github/workflows/run-static.yml +++ b/.github/workflows/run-static.yml @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install uv uses: astral-sh/setup-uv@v7 with: diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 75ba3365e..5c6d4d892 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -34,7 +34,7 @@ jobs: timeout-minutes: 10 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install uv uses: astral-sh/setup-uv@v7 @@ -60,7 +60,7 @@ jobs: timeout-minutes: 10 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install uv uses: astral-sh/setup-uv@v7 @@ -85,7 +85,7 @@ jobs: timeout-minutes: 10 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install uv uses: astral-sh/setup-uv@v7 diff --git a/.github/workflows/update-config-schema.yml b/.github/workflows/update-config-schema.yml index 1ebe92ec1..9a7900cb8 100644 --- a/.github/workflows/update-config-schema.yml +++ b/.github/workflows/update-config-schema.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Generate Marvin App token id: marvin-token diff --git a/.github/workflows/update-sdk-docs.yml b/.github/workflows/update-sdk-docs.yml index 8d1996f7a..aa5a44bd9 100644 --- a/.github/workflows/update-sdk-docs.yml +++ b/.github/workflows/update-sdk-docs.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Generate Marvin App token id: marvin-token