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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup Bun
uses: oven-sh/setup-bun@v2
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
timeout-minutes: 15
needs: install
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Setup environment
uses: ./.github/actions/setup-bun-env
with:
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
matrix:
shard: [1/3, 2/3, 3/3]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Setup environment
uses: ./.github/actions/setup-bun-env
with:
Expand All @@ -115,7 +115,7 @@ jobs:
timeout-minutes: 20
needs: install
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Setup environment
uses: ./.github/actions/setup-bun-env
with:
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
timeout-minutes: 5
needs: install
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install Semgrep
run: pip install semgrep
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
timeout-minutes: 10
needs: install
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Setup environment
uses: ./.github/actions/setup-bun-env
with:
Expand All @@ -230,7 +230,7 @@ jobs:
# prove stable. See vitest.config.ts `thresholds` block.
continue-on-error: true
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Setup environment
uses: ./.github/actions/setup-bun-env
with:
Expand All @@ -256,7 +256,7 @@ jobs:
matrix:
shard: [1/2, 2/2]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Setup environment
uses: ./.github/actions/setup-bun-env
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mutation-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
# enforced after the Stryker run by `check-mutation-thresholds.mjs`.
mutate: 'src/services/agent/agent-execution.service.ts,src/services/container-agent/plan-approval.service.ts,src/services/task.service.ts,src/lib/agents/stream-handler.ts'
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup Bun
uses: oven-sh/setup-bun@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-cli-monitor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Bun
uses: oven-sh/setup-bun@v2
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
image-tag: ${{ steps.meta.outputs.version }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event.inputs.ref || github.ref }}

Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
image-tag: ${{ steps.meta.outputs.version }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event.inputs.ref || github.ref }}

Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
image-tag: ${{ steps.meta.outputs.version }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event.inputs.ref || github.ref }}

Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:
chart-filename: ${{ steps.package.outputs.filename }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event.inputs.ref || github.ref }}

Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Download chart artifact
uses: actions/download-artifact@v8
Expand Down
Loading