Skip to content

Commit 1be43e6

Browse files
committed
Fix stray statement and update checkout workflow ver 4->6
1 parent ce7313e commit 1be43e6

4 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/claude-code-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Checkout repository
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626
with:
2727
fetch-depth: 1
2828

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
actions: read # Required for Claude to read CI results on PRs
3030
steps:
3131
- name: Checkout repository
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v6
3333
with:
3434
fetch-depth: 1
3535

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
test:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313
- uses: oven-sh/setup-bun@v2
1414
with:
1515
bun-version: latest

src/read/read-space.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,4 +141,3 @@ export async function readSpace(path: string, options: ReadSpaceDirectoryOptions
141141
}
142142
return { kind: 'directory', ...(await readSpaceDirectory(path, options)) };
143143
}
144-
resolveGraphEdges;

0 commit comments

Comments
 (0)