Skip to content

Commit 54f8bf6

Browse files
ndbroadbentclaude
andcommitted
fix: upgrade Go to 1.25.6 and fix docs build errors
This commit fixes the failing CI and Deploy Docs workflows: 1. **Security vulnerabilities fixed**: - Upgraded Go from 1.25.5 to 1.25.6 in all GitHub workflows - Upgraded go.mod to use Go 1.25.6 - Fixes GO-2026-4341 (net/url vulnerability) - Fixes GO-2026-4340 (crypto/tls vulnerability) 2. **Docs build errors fixed**: - Removed non-existent 'reference' slug from Astro sidebar config - Fixed MDX curly brace escaping issues ({app} → `{app}`) - Applied fix to github.mdx, index.mdx, and settings.mdx All fixes verified by successful docs build (88 pages built). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 2378c6e commit 54f8bf6

8 files changed

Lines changed: 8 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Go
2020
uses: actions/setup-go@v5
2121
with:
22-
go-version: "1.25.5"
22+
go-version: "1.25.6"
2323

2424
- name: Install libfido2 dependencies
2525
run: |
@@ -63,7 +63,7 @@ jobs:
6363
- name: Setup Go
6464
uses: actions/setup-go@v5
6565
with:
66-
go-version: "1.25.5"
66+
go-version: "1.25.6"
6767

6868
- name: Cache golangci-lint cache
6969
uses: actions/cache@v4

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
- name: Setup Go
158158
uses: actions/setup-go@v5
159159
with:
160-
go-version: "1.25.5"
160+
go-version: "1.25.6"
161161

162162
- name: Download gateway image
163163
uses: actions/download-artifact@v4

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
- name: Setup Go
7878
uses: actions/setup-go@v5
7979
with:
80-
go-version: "1.25.5"
80+
go-version: "1.25.6"
8181
- name: Build binary
8282
env:
8383
CGO_ENABLED: 0

docs/astro.config.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,6 @@ export default defineConfig({
280280
{
281281
label: 'Reference',
282282
items: [
283-
{ label: 'Overview', slug: 'reference' },
284283
{ label: 'CLI Commands', slug: 'reference/cli-commands' },
285284
{
286285
label: 'Environment Variables',

docs/src/content/docs/integrations/deploy-approvals/github.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The token needs permissions to read branches/commits and post PR comments:
5151

5252
### Per-App Settings
5353

54-
These settings live under **Apps → {app} → Settings**:
54+
These settings live under **Apps → `{app}` → Settings**:
5555

5656
| Setting | Description | Example |
5757
|---------|-------------|---------|

docs/src/content/docs/user-guide/web-ui/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Non-admins can browse most read-only views, but only admins can change users, in
7070

7171
## App Settings
7272

73-
App-level settings live under **Apps → {app} → Settings**. This is where admins configure:
73+
App-level settings live under **Apps → `{app}` → Settings**. This is where admins configure:
7474

7575
- VCS/CI integration per app (GitHub + CircleCI)
7676
- Protected and secret environment variables

docs/src/content/docs/user-guide/web-ui/settings.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ These defaults are used when an app does not specify its own provider settings.
5252

5353
## App Settings (Per-App)
5454

55-
App-specific settings are **not** on this page. Go to **Apps → {app} → Settings** to configure:
55+
App-specific settings are **not** on this page. Go to **Apps → `{app}` → Settings** to configure:
5656

5757
- VCS/CI deploy settings (repo, branch, approval job name)
5858
- Protected and secret environment variables

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/DocSpring/rack-gateway
22

3-
go 1.25.0
3+
go 1.25.6
44

55
require (
66
github.com/GeertJohan/yubigo v0.0.0-20190917122436-175bc097e60e

0 commit comments

Comments
 (0)