Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check-agent-removal-impact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Checkout PR branch
if: steps.changes.outputs.relevant == 'true'
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
has_agents: ${{ steps.classify.outputs.has_agents }}
has_docs_only: ${{ steps.classify.outputs.has_docs_only }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
Expand Down Expand Up @@ -88,14 +88,14 @@ jobs:
# 2. `pr/` — PR head, the untrusted *content* the validator scans.
# The runner only ever invokes Python that lives under `trusted/`.
- name: Checkout trusted base (for validator scripts)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event.pull_request.base.sha }}
fetch-depth: 1
path: trusted

- name: Checkout PR head (content under review — never executed)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
env:
GIT_LFS_SKIP_SMUDGE: "1"
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

- name: Checkout
if: github.event_name != 'pull_request' || steps.changes.outputs.relevant == 'true'
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Python
if: github.event_name != 'pull_request' || steps.changes.outputs.relevant == 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# Full history needed so the commit author is resolved correctly
fetch-depth: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-agent-schemas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
# as data and never executes PR-supplied code.

- name: Checkout PR branch
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate-everything.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-starter-kit-schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

- name: Checkout PR branch
if: steps.changes.outputs.relevant == 'true'
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Python
if: steps.changes.outputs.relevant == 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-starter-kits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

- name: Checkout PR branch
if: steps.changes.outputs.relevant == 'true'
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
Loading