chore: sync Wails CLI version in CI with go.mod (v2.14.0) (#2547)
Some checks are pending
Multiplatform Docker build & push / build (push) Waiting to run
Code quality - linting and typechecking / linting (push) Waiting to run
Backend testing with Postgres / test-postgres (push) Waiting to run

The Dependabot bump updated github.com/wailsapp/wails/v2 to v2.14.0 in
go.mod but the wails workflow still installed the CLI at v2.12.0. Align
the CI install and document in AGENTS.md that both must be updated
together.

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Roland 2026-08-13 14:41:11 +07:00 committed by GitHub
parent d2cebc5c6f
commit d8ef0e70e0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View file

@ -76,7 +76,7 @@ jobs:
node-version: "22.x"
- name: Install Wails
run: go install github.com/wailsapp/wails/v2/cmd/wails@v2.12.0
run: go install github.com/wailsapp/wails/v2/cmd/wails@v2.14.0
shell: bash
- name: Install Linux Wails deps

View file

@ -88,6 +88,8 @@ go run cmd/http/main.go
wails dev -tags "wails"
```
**Wails versions must stay in sync:** the `github.com/wailsapp/wails/v2` version in `go.mod` and the Wails CLI version installed in `.github/workflows/wails.yml` (`go install ...cmd/wails@vX.Y.Z`) must match. When bumping one, always update the other — this is a common source of drift (e.g. via Dependabot updates to `go.mod` only).
## Testing
### Go Backend