Skip to content

Commit 63e8d98

Browse files
authored
Merge branch 'main' into fix-get-me-empty-arguments
2 parents 59fb6f9 + eb088df commit 63e8d98

34 files changed

Lines changed: 1336 additions & 73 deletions

.github/actions/build-ui/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ runs:
2020
if: steps.cache-ui.outputs.cache-hit != 'true'
2121
uses: actions/setup-node@v6
2222
with:
23-
node-version: "20"
23+
node-version: "22"
2424
cache: npm
2525
cache-dependency-path: ui/package-lock.json
2626

.github/workflows/code-scanning.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,15 @@ jobs:
7272
with:
7373
language: ${{ matrix.language }}
7474
- name: Setup Go
75-
uses: actions/setup-go@v6
75+
uses: actions/setup-go@v7
7676
if: matrix.language == 'go' && fromJSON(steps.resolve-environment.outputs.environment).configuration.go.version
7777
with:
7878
go-version: ${{ fromJSON(steps.resolve-environment.outputs.environment).configuration.go.version }}
7979
cache: false
8080

8181
- name: Set up Node.js (for JavaScript CodeQL)
8282
if: matrix.language == 'javascript'
83-
uses: actions/setup-node@v6
83+
uses: actions/setup-node@v7
8484
with:
8585
node-version: "20"
8686
cache: "npm"

.github/workflows/docs-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: ./.github/actions/build-ui
2121

2222
- name: Set up Go
23-
uses: actions/setup-go@v6
23+
uses: actions/setup-go@v7
2424
with:
2525
go-version-file: 'go.mod'
2626

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: ./.github/actions/build-ui
3030

3131
- name: Set up Go
32-
uses: actions/setup-go@v6
32+
uses: actions/setup-go@v7
3333
with:
3434
go-version-file: "go.mod"
3535

.github/workflows/goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: ./.github/actions/build-ui
2121

2222
- name: Set up Go
23-
uses: actions/setup-go@v6
23+
uses: actions/setup-go@v7
2424
with:
2525
go-version-file: "go.mod"
2626

.github/workflows/license-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
uses: ./.github/actions/build-ui
3737

3838
- name: Set up Go
39-
uses: actions/setup-go@v6
39+
uses: actions/setup-go@v7
4040
with:
4141
go-version-file: "go.mod"
4242

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v7
1717
- name: Build UI
1818
uses: ./.github/actions/build-ui
19-
- uses: actions/setup-go@v6
19+
- uses: actions/setup-go@v7
2020
with:
2121
go-version: '1.25'
2222
- name: golangci-lint

.github/workflows/mcp-diff.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fetch-depth: 0
2121

2222
- name: Set up Go
23-
uses: actions/setup-go@v6
23+
uses: actions/setup-go@v7
2424
with:
2525
go-version-file: go.mod
2626

@@ -90,7 +90,7 @@ jobs:
9090
fetch-depth: 0
9191

9292
- name: Set up Go
93-
uses: actions/setup-go@v6
93+
uses: actions/setup-go@v7
9494
with:
9595
go-version-file: go.mod
9696

.github/workflows/registry-releaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v7
1818

1919
- name: Setup Go
20-
uses: actions/setup-go@v6
20+
uses: actions/setup-go@v7
2121
with:
2222
go-version: "stable"
2323

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,8 @@ Add one of the following JSON blocks to your IDE's MCP settings.
311311

312312
See **[Local Server OAuth Login](docs/oauth-login.md)** for the native-binary flow (no fixed port needed), the headless/device-code fallback, GitHub Enterprise Server / `ghe.com`, and bringing your own OAuth or GitHub App.
313313

314+
For non-interactive stdio deployments, see **[GitHub App Authentication](docs/github-app-auth.md)**.
315+
314316
**Or authenticate with a Personal Access Token.** Set `GITHUB_PERSONAL_ACCESS_TOKEN` instead (it takes precedence over OAuth):
315317

316318
```json

0 commit comments

Comments
 (0)