chore: update Go version to 1.26.0 across documentation and workflows

This commit is contained in:
GitHub Actions
2026-02-10 22:21:25 +00:00
parent ef00d7e133
commit 9b2d8e5455
21 changed files with 103 additions and 41 deletions

View File

@@ -122,7 +122,7 @@ graph TB
| Component | Technology | Version | Purpose |
|-----------|-----------|---------|---------|
| **Language** | Go | 1.25.7 | Primary backend language |
| **Language** | Go | 1.26.0 | Primary backend language |
| **HTTP Framework** | Gin | Latest | Routing, middleware, HTTP handling |
| **Database** | SQLite | 3.x | Embedded database |
| **ORM** | GORM | Latest | Database abstraction layer |
@@ -816,7 +816,7 @@ COPY frontend/ ./
RUN npm run build
# Stage 2: Build backend
FROM golang:1.25-bookworm AS backend-builder
FROM golang:1.26-bookworm AS backend-builder
WORKDIR /app/backend
COPY backend/go.* ./
RUN go mod download
@@ -923,7 +923,7 @@ services:
1. **Prerequisites:**
```bash
- Go 1.25+ (backend development)
- Go 1.26+ (backend development)
- Node.js 23+ and npm (frontend development)
- Docker 24+ (E2E testing)
- SQLite 3.x (database)