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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
language: ["python"]
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Initialize CodeQL
uses: github/codeql-action/init@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/floor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout agent-candidate
uses: actions/checkout@v6
uses: actions/checkout@v7
# primary checkout -> $GITHUB_WORKSPACE

- name: Checkout candidate-suite (sibling real-suite back-end, pinned)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: David-BS/candidate-suite
# Immutable pin (release/1.0.0, merge of PR #21). Swap for a tag like
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pin-watch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout (to read floor.yml)
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Resolve pinned SHA and candidate-suite HEAD
id: resolve
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
# Frozen binary self-re-execs into these .py; pinned sibling, mirrors the Floor job.
CANDIDATE_SUITE_DIR: ${{ github.workspace }}/candidate-suite
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7

- name: Checkout candidate-suite (pinned)
uses: actions/checkout@v5
uses: actions/checkout@v7
with:
repository: David-BS/candidate-suite
ref: 2863162ee8bdb6260dd6d0c99621115a5b89cb6a # full immutable SHA (v1.0.0 tip); checkout cannot fetch a short SHA
Expand Down Expand Up @@ -81,10 +81,10 @@ jobs:
permissions:
contents: write # the one job that earns write -- used only by the attach step (tag only)
steps:
- uses: actions/checkout@v5 # for manifest.json + .mcpbignore
- uses: actions/checkout@v7 # for manifest.json + .mcpbignore

- name: Checkout candidate-suite (pinned)
uses: actions/checkout@v5
uses: actions/checkout@v7
with:
repository: David-BS/candidate-suite
ref: 2863162ee8bdb6260dd6d0c99621115a5b89cb6a # the .py travel beside the binary at ${__dirname}/candidate-suite; full proven tree (== build's CANDIDATE_SUITE_DIR)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/server-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout agent-candidate
uses: actions/checkout@v6
uses: actions/checkout@v7
# primary checkout -> $GITHUB_WORKSPACE

- name: Checkout candidate-suite (sibling real-suite back-end, pinned)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: David-BS/candidate-suite
# Same immutable pin as Floor (release/1.0.0, merge of PR #21). The
Expand Down