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/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: blacksmith-2vcpu-ubuntu-2404
timeout-minutes: 90
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Setup Nix
uses: ./.github/actions/setup-nix
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
outputs:
code_changes: ${{ github.event_name == 'workflow_dispatch' || steps.filter.outputs.code_changes }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
if: github.event_name != 'workflow_dispatch'

- name: Detect build-relevant changes
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
timeout-minutes: 30
needs: changes
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
ref: ${{ inputs.ref }}

Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
timeout-minutes: 30
needs: [changes, build]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
ref: ${{ inputs.ref }}

Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
timeout-minutes: 30
needs: [changes, unit-test]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
ref: ${{ inputs.ref }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/model-update-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
token: ${{ github.token }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/opencode-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
token: ${{ secrets.OPENCODE_PAT }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/opencode-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
ref: ${{ inputs.head_sha || github.event.pull_request.head.sha }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/opencode-test-writer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# or a fine-grained PAT with Contents: Read & Write on this repository.
# Without write permission, git push will fail with 403.
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
ref: ${{ github.event.repository.default_branch }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/opencode-triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
return days >= 30;
result-encoding: string

- uses: actions/checkout@v4
- uses: actions/checkout@v7
if: steps.check.outputs.result == 'true'
with:
token: ${{ github.token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/opencode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
issues: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
token: ${{ secrets.OPENCODE_PAT }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/repo-automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Label Issue
uses: actions/github-script@v9
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale-branch-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Delete stale branches behind dev
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/visual-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
issues: write

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Setup Nix
uses: ./.github/actions/setup-nix
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/workflow-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Run actionlint
uses: reviewdog/action-actionlint@v1
Expand All @@ -36,7 +36,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Parse workflow YAML
run: |
Expand Down
Loading