fix: downgrade goquery to v1.9.0 (v1.12.0 requires Go 1.25)
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 7s
Mirror to GitHub / mirror (push) Failing after 3s
Tests / test (push) Failing after 14s

goquery v1.12.0 has a go.mod requirement of Go 1.25, which is not
released yet. Downgrade to v1.9.0 which works with Go 1.24.
This commit is contained in:
Franz Kafka 2026-03-22 02:27:03 +00:00
parent 0d84bedc7a
commit 00ae1c5aed
2 changed files with 3 additions and 3 deletions

2
go.mod
View file

@ -4,7 +4,7 @@ go 1.24
require (
github.com/BurntSushi/toml v1.5.0
github.com/PuerkitoBio/goquery v1.12.0
github.com/PuerkitoBio/goquery v1.9.0
github.com/redis/go-redis/v9 v9.18.0
)