Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 24, 2025

This PR contains the following updates:

Package Change Age Confidence
github.com/cloudwego/hertz v0.10.2 -> v0.10.3 age confidence
github.com/eko/gocache/lib/v4 v4.2.0 -> v4.2.2 age confidence
github.com/eko/gocache/store/bigcache/v4 v4.2.2 -> v4.2.3 age confidence
github.com/eko/gocache/store/redis/v4 v4.2.2 -> v4.2.5 age confidence
github.com/redis/go-redis/v9 v9.12.1 -> v9.17.2 age confidence
github.com/stretchr/testify v1.10.0 -> v1.11.1 age confidence
golang.org/x/crypto v0.41.0 -> v0.45.0 age confidence
golang.org/x/sync v0.16.0 -> v0.18.0 age confidence
gorm.io/gorm v1.30.1 -> v1.31.1 age confidence

Release Notes

cloudwego/hertz (github.com/cloudwego/hertz)

v0.10.3

Compare Source

What's Changed

Feature

[#​1432] feat(server): add WithMaxHeaderBytes opt

Fix

[#​1431] fix: no conn limit if maxConnsPetHost not configured
[#​1426] fix(client): prioritize req timeout opt
[#​1420] fix: fix template go lint in go 1.24
[#​1418] fix(protocol): improve cookie max-age and expires handling

Refactor:

[#​1416] refactor(binding): deprecate StructValidator

Full Changelog: cloudwego/hertz@v0.10.2...v0.10.3

redis/go-redis (github.com/redis/go-redis/v9)

v9.17.2: 9.17.2

Compare Source

🐛 Bug Fixes

  • Connection Pool: Fixed critical race condition in turn management that could cause connection leaks when dial goroutines complete after request timeout (#​3626) by @​cyningsun
  • Context Timeout: Improved context timeout calculation to use minimum of remaining time and DialTimeout, preventing goroutines from waiting longer than necessary (#​3626) by @​cyningsun

🧰 Maintenance

  • chore(deps): bump rojopolis/spellcheck-github-actions from 0.54.0 to 0.55.0 (#​3627)

Contributors

We'd like to thank all the contributors who worked on this release!

@​cyningsun and @​ndyakov

v9.17.1: 9.17.1

Compare Source

🐛 Bug Fixes

🧰 Maintenance

  • chore(deps): bump golangci/golangci-lint-action from 9.0.0 to 9.1.0 (#​3609)
  • chore(deps): bump actions/checkout from 5 to 6 (#​3610)
  • chore(script): fix help call in tag.sh (#​3606) by @​ndyakov

Contributors

We'd like to thank all the contributors who worked on this release!

@​marcoferrer and @​ndyakov

v9.17.0: 9.17.0

Compare Source

🚀 Highlights

Redis 8.4 Support

Added support for Redis 8.4, including new commands and features (#​3572)

Typed Errors

Introduced typed errors for better error handling using errors.As instead of string checks. Errors can now be wrapped and set to commands in hooks without breaking library functionality (#​3602)

New Commands
  • CAS/CAD Commands: Added support for Compare-And-Set/Compare-And-Delete operations with conditional matching (IFEQ, IFNE, IFDEQ, IFDNE) (#​3583, #​3595)
  • MSETEX: Atomically set multiple key-value pairs with expiration options and conditional modes (#​3580)
  • XReadGroup CLAIM: Consume both incoming and idle pending entries from streams in a single call (#​3578)
  • ACL Commands: Added ACLGenPass, ACLUsers, and ACLWhoAmI (#​3576)
  • SLOWLOG Commands: Added SLOWLOG LEN and SLOWLOG RESET (#​3585)
  • LATENCY Commands: Added LATENCY LATEST and LATENCY RESET (#​3584)
Search & Vector Improvements
  • Hybrid Search: Added EXPERIMENTAL support for the new FT.HYBRID command (#​3573)
  • Vector Range: Added VRANGE command for vector sets (#​3543)
  • FT.INFO Enhancements: Added vector-specific attributes in FT.INFO response (#​3596)
Connection Pool Improvements
  • Improved Connection Success Rate: Implemented FIFO queue-based fairness and context pattern for connection creation to prevent premature cancellation under high concurrency (#​3518)
  • Connection State Machine: Resolved race conditions and improved pool performance with proper state tracking (#​3559)
  • Pool Performance: Significant performance improvements with faster semaphores, lockless hook manager, and reduced allocations (47-67% faster Get/Put operations) (#​3565)
Metrics & Observability
  • Canceled Metric Attribute: Added 'canceled' metrics attribute to distinguish context cancellation errors from other errors (#​3566)

✨ New Features

🐛 Bug Fixes

⚡ Performance

  • Connection state machine with race condition fixes (#​3559) by @​ndyakov
  • Pool performance improvements: 47-67% faster Get/Put, 33% less memory, 50% fewer allocations (#​3565) by @​ndyakov

🧪 Testing & Infrastructure

👥 Contributors

We'd like to thank all the contributors who worked on this release!

@​12ya, @​ajax16384, @​cxljs, @​cyningsun, @​destinyoooo, @​dragneelfps, @​htemelski-redis, @​manisharma, @​ndyakov, @​ofekshenawa, @​pvragov


Full Changelog: redis/go-redis@v9.16.0...v9.17.0

v9.16.0: 9.16.0

Compare Source

🚀 Highlights

Maintenance Notifications Support

This release introduces comprehensive support for Redis maintenance notifications, enabling applications to handle server maintenance events gracefully. The new maintnotifications package provides:

  • RESP3 Push Notifications: Full support for Redis RESP3 protocol push notifications
  • Connection Handoff: Automatic connection migration during server maintenance with configurable retry policies and circuit breakers
  • Graceful Degradation: Configurable timeout relaxation during maintenance windows to prevent false failures
  • Event-Driven Architecture: Background workers with on-demand scaling for efficient handoff processing

For detailed usage examples and configuration options, see the maintenance notifications documentation.

✨ New Features

  • Trace Filtering: Add support for filtering traces for specific commands, including pipeline operations and dial operations (#​3519, #​3550)
    • New TraceCmdFilter option to selectively trace commands
    • Reduces overhead by excluding high-frequency or low-value commands from traces

🐛 Bug Fixes

  • Pipeline Error Handling: Fix issue where pipeline repeatedly sets the same error (#​3525)
  • Connection Pool: Ensure re-authentication does not interfere with connection handoff operations (#​3547)

🔧 Improvements

  • Hash Commands: Update hash command implementations (#​3523)
  • OpenTelemetry: Use metric.WithAttributeSet to avoid unnecessary attribute copying in redisotel (#​3552)

📚 Documentation

  • Cluster Client: Add explanation for why MaxRetries is disabled for ClusterClient (#​3551)

🧪 Testing & Infrastructure

  • E2E Testing: Upgrade E2E testing framework with improved reliability and coverage (#​3541)
  • Release Process: Improved resiliency of the release process (#​3530)

📦 Dependencies

  • Bump rojopolis/spellcheck-github-actions from 0.51.0 to 0.52.0 (#​3520)
  • Bump github/codeql-action from 3 to 4 (#​3544)

👥 Contributors

We'd like to thank all the contributors who worked on this release!

@​ndyakov, @​htemelski-redis, @​Sovietaced, @​Udhayarajan, @​boekkooi-impossiblecloud, @​Pika-Gopher, @​cxljs, @​huiyifyj, @​omid-h70


Full Changelog: redis/go-redis@v9.14.0...v9.16.0

v9.15.1: Retract v9.15.0 and v9.15.1

v9.14.1: 9.14.1

Compare Source

Changes

  • fix(otel): Add support for filtering traces for certain commands (#​3519)
  • fix(pool): remove conn from idleConns if present (#​3546)

Contributors

We'd like to thank all the contributors who worked on this release!

@​Sovietaced, @​ndyakov

v9.14.0: 9.14.0

Compare Source

Highlights

  • Added batch process method to the pipeline (#​3510)

Changes

🚀 New Features

  • Added batch process method to the pipeline (#​3510)

🐛 Bug Fixes

  • fix: SetErr on Cmd if the command cannot be queued correctly in multi/exec (#​3509)

🧰 Maintenance

  • Updates release drafter config to exclude dependabot (#​3511)
  • chore(deps): bump actions/setup-go from 5 to 6 (#​3504)

Contributors

We'd like to thank all the contributors who worked on this release!

@​elena-kolevska, @​htemelski-redis and @​ndyakov

v9.13.0: 9.13.0

Compare Source

Highlights

  • Pipeliner expose queued commands (#​3496)
  • Ensure that JSON.GET returns Nil response (#​3470)
  • Fixes on Read and Write buffer sizes and UniversalOptions

Changes

  • Pipeliner expose queued commands (#​3496)
  • fix(test): fix a timing issue in pubsub test (#​3498)
  • Allow users to enable read-write splitting in failover mode. (#​3482)
  • Set the read/write buffer size of the sentinel client to 4KiB (#​3476)

🚀 New Features

  • fix(otel): register wait metrics (#​3499)
  • Support subscriptions against cluster slave nodes (#​3480)
  • Add wait metrics to otel (#​3493)
  • Clean failing timeout implementation (#​3472)

🐛 Bug Fixes

  • Do not assume that all non-IP hosts are loopbacks (#​3085)
  • Ensure that JSON.GET returns Nil response (#​3470)

🧰 Maintenance

  • fix(otel): register wait metrics (#​3499)
  • fix(make test): Add default env in makefile (#​3491)
  • Update the introduction to running tests in README.md (#​3495)
  • test: Add comprehensive edge case tests for IncrByFloat command (#​3477)
  • Set the default read/write buffer size of Redis connection to 32KiB (#​3483)
  • Bumps test image to 8.2.1-pre (#​3478)
  • fix UniversalOptions miss ReadBufferSize and WriteBufferSize options (#​3485)
  • chore(deps): bump actions/checkout from 4 to 5 (#​3484)
  • Removes dry run for stale issues policy (#​3471)
  • Update otel metrics URL (#​3474)

Contributors

We'd like to thank all the contributors who worked on this release!

@​LINKIWI, @​cxljs, @​cybersmeashish, @​elena-kolevska, @​htemelski-redis, @​mwhooker, @​ndyakov, @​ofekshenawa, @​suever

stretchr/testify (github.com/stretchr/testify)

v1.11.1

Compare Source

This release fixes #​1785 introduced in v1.11.0 where expected argument values implementing the stringer interface (String() string) with a method which mutates their value, when passed to mock.Mock.On (m.On("Method", <expected>).Return()) or actual argument values passed to mock.Mock.Called may no longer match one another where they previously did match. The behaviour prior to v1.11.0 where the stringer is always called is restored. Future testify releases may not call the stringer method at all in this case.

What's Changed

Full Changelog: stretchr/testify@v1.11.0...v1.11.1

v1.11.0

Compare Source

What's Changed

Functional Changes

v1.11.0 Includes a number of performance improvements.

Fixes
Documentation, Build & CI

New Contributors

Full Changelog: stretchr/testify@v1.10.0...v1.11.0

go-gorm/gorm (gorm.io/gorm)

v1.31.1

Compare Source

Changes

v1.31.0

Compare Source

Changes

  • Add association operation support to generics Set API and enable conditional bulk association updates @​jinzhu (#​7581)

v1.30.5

Compare Source

Changes

  • No changes

v1.30.4

Compare Source

Changes

v1.30.3

Compare Source

Changes

  • No changes

v1.30.2

Compare Source

Changes


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the renovate label Aug 24, 2025
@github-actions
Copy link

✅ 全部的测试用例都通过了!

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 50b76b3 to be9640b Compare August 27, 2025 11:56
@renovate renovate bot changed the title fix(deps): update module github.com/stretchr/testify to v1.11.0 fix(deps): update module github.com/stretchr/testify to v1.11.1 Aug 27, 2025
@github-actions
Copy link

✅ 全部的测试用例都通过了!

@renovate renovate bot changed the title fix(deps): update module github.com/stretchr/testify to v1.11.1 fix(deps): update all non-major dependencies Aug 28, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from be9640b to e616679 Compare August 28, 2025 07:34
@github-actions
Copy link

✅ 全部的测试用例都通过了!

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e616679 to 63112c2 Compare September 6, 2025 23:11
@renovate
Copy link
Contributor Author

renovate bot commented Sep 6, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -t ./...
go: module github.com/eko/gocache/lib/[email protected] requires go >= 1.25; switching to go1.25.4
go: downloading go1.25.4 (linux/amd64)
go: download go1.25.4: golang.org/[email protected]: verifying module: checksum database disabled by GOSUMDB=off

@github-actions
Copy link

github-actions bot commented Sep 6, 2025

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading golang.org/x/crypto v0.41.0
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/eko/gocache/store/bigcache/v4 v4.2.2
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/cloudwego/hertz v0.10.2
go: downloading golang.org/x/sync v0.16.0
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/golang/mock v1.6.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading google.golang.org/protobuf v1.34.1
go: downloading github.com/bytedance/gopkg v0.1.1
go: downloading github.com/fsnotify/fsnotify v1.5.4
go: downloading github.com/cloudwego/netpoll v0.7.0
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/nyaruka/phonenumbers v1.0.55
go: downloading github.com/bytedance/sonic v1.14.0
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/josharian/intern v1.0.0
go: downloading github.com/cloudwego/gopkg v0.1.4
go: downloading github.com/golang/protobuf v1.5.3
go: downloading github.com/cloudwego/base64x v0.1.5
go: downloading golang.org/x/arch v0.0.0-20210923205945-b76863e36670
go: downloading github.com/klauspost/cpuid/v2 v2.0.9
go: downloading github.com/bytedance/sonic/loader v0.3.0
go: downloading github.com/twitchyliquid64/golang-asm v0.15.1
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
?   	github.com/retalkgo/retalk/internal/docs	[no test files]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
?   	github.com/retalkgo/retalk/server/router	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 63112c2 to e236eac Compare September 7, 2025 14:05
@github-actions
Copy link

github-actions bot commented Sep 7, 2025

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading golang.org/x/crypto v0.41.0
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading github.com/eko/gocache/store/bigcache/v4 v4.2.2
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading github.com/cloudwego/hertz v0.10.2
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading github.com/golang/mock v1.6.0
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading google.golang.org/protobuf v1.34.1
go: downloading github.com/bytedance/gopkg v0.1.1
go: downloading github.com/fsnotify/fsnotify v1.5.4
go: downloading github.com/cloudwego/netpoll v0.7.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/nyaruka/phonenumbers v1.0.55
go: downloading github.com/bytedance/sonic v1.14.0
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/josharian/intern v1.0.0
go: downloading github.com/cloudwego/gopkg v0.1.4
go: downloading github.com/golang/protobuf v1.5.3
go: downloading github.com/cloudwego/base64x v0.1.5
go: downloading golang.org/x/arch v0.0.0-20210923205945-b76863e36670
go: downloading github.com/bytedance/sonic/loader v0.3.0
go: downloading github.com/twitchyliquid64/golang-asm v0.15.1
go: downloading github.com/klauspost/cpuid/v2 v2.0.9
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
?   	github.com/retalkgo/retalk/server/router	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e236eac to cbad051 Compare September 7, 2025 21:36
@github-actions
Copy link

github-actions bot commented Sep 7, 2025

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading golang.org/x/crypto v0.41.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/cloudwego/hertz v0.10.2
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/eko/gocache/store/bigcache/v4 v4.2.2
go: downloading github.com/redis/go-redis/v9 v9.12.1
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/golang/mock v1.6.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading github.com/cespare/xxhash/v2 v2.3.0
go: downloading github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading google.golang.org/protobuf v1.34.1
go: downloading github.com/bytedance/gopkg v0.1.1
go: downloading github.com/fsnotify/fsnotify v1.5.4
go: downloading github.com/cloudwego/netpoll v0.7.0
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/nyaruka/phonenumbers v1.0.55
go: downloading github.com/bytedance/sonic v1.14.0
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/josharian/intern v1.0.0
go: downloading github.com/cloudwego/gopkg v0.1.4
go: downloading github.com/golang/protobuf v1.5.3
go: downloading github.com/cloudwego/base64x v0.1.5
go: downloading golang.org/x/arch v0.0.0-20210923205945-b76863e36670
go: downloading github.com/bytedance/sonic/loader v0.3.0
go: downloading github.com/twitchyliquid64/golang-asm v0.15.1
go: downloading github.com/klauspost/cpuid/v2 v2.0.9
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
?   	github.com/retalkgo/retalk/server/router	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cbad051 to 2bdd787 Compare September 8, 2025 00:31
@github-actions
Copy link

github-actions bot commented Sep 8, 2025

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading golang.org/x/crypto v0.41.0
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading github.com/cloudwego/hertz v0.10.2
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading github.com/eko/gocache/store/bigcache/v4 v4.2.2
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/golang/mock v1.6.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading google.golang.org/protobuf v1.34.1
go: downloading github.com/bytedance/gopkg v0.1.1
go: downloading github.com/fsnotify/fsnotify v1.5.4
go: downloading github.com/cloudwego/netpoll v0.7.0
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/nyaruka/phonenumbers v1.0.55
go: downloading github.com/bytedance/sonic v1.14.0
go: downloading github.com/josharian/intern v1.0.0
go: downloading github.com/golang/protobuf v1.5.3
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/cloudwego/gopkg v0.1.4
go: downloading github.com/cloudwego/base64x v0.1.5
go: downloading golang.org/x/arch v0.0.0-20210923205945-b76863e36670
go: downloading github.com/bytedance/sonic/loader v0.3.0
go: downloading github.com/twitchyliquid64/golang-asm v0.15.1
go: downloading github.com/klauspost/cpuid/v2 v2.0.9
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
?   	github.com/retalkgo/retalk/server/router	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2bdd787 to 2a9b593 Compare September 8, 2025 10:53
@github-actions
Copy link

github-actions bot commented Sep 8, 2025

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading golang.org/x/crypto v0.41.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/cloudwego/hertz v0.10.2
go: downloading github.com/eko/gocache/store/bigcache/v4 v4.2.2
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading github.com/golang/mock v1.6.0
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading google.golang.org/protobuf v1.34.1
go: downloading github.com/bytedance/gopkg v0.1.1
go: downloading github.com/fsnotify/fsnotify v1.5.4
go: downloading github.com/cloudwego/netpoll v0.7.0
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/nyaruka/phonenumbers v1.0.55
go: downloading github.com/bytedance/sonic v1.14.0
go: downloading github.com/josharian/intern v1.0.0
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/cloudwego/gopkg v0.1.4
go: downloading github.com/golang/protobuf v1.5.3
go: downloading github.com/cloudwego/base64x v0.1.5
go: downloading golang.org/x/arch v0.0.0-20210923205945-b76863e36670
go: downloading github.com/bytedance/sonic/loader v0.3.0
go: downloading github.com/twitchyliquid64/golang-asm v0.15.1
go: downloading github.com/klauspost/cpuid/v2 v2.0.9
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
?   	github.com/retalkgo/retalk/server/router	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2a9b593 to 57f90a7 Compare September 8, 2025 13:12
@github-actions
Copy link

github-actions bot commented Sep 8, 2025

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading golang.org/x/crypto v0.41.0
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/eko/gocache/store/bigcache/v4 v4.2.2
go: downloading github.com/cloudwego/hertz v0.10.2
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading github.com/golang/mock v1.6.0
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading google.golang.org/protobuf v1.34.1
go: downloading github.com/bytedance/gopkg v0.1.1
go: downloading github.com/fsnotify/fsnotify v1.5.4
go: downloading github.com/cloudwego/netpoll v0.7.0
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/nyaruka/phonenumbers v1.0.55
go: downloading github.com/bytedance/sonic v1.14.0
go: downloading github.com/josharian/intern v1.0.0
go: downloading github.com/golang/protobuf v1.5.3
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/cloudwego/gopkg v0.1.4
go: downloading golang.org/x/arch v0.0.0-20210923205945-b76863e36670
go: downloading github.com/cloudwego/base64x v0.1.5
go: downloading github.com/bytedance/sonic/loader v0.3.0
go: downloading github.com/twitchyliquid64/golang-asm v0.15.1
go: downloading github.com/klauspost/cpuid/v2 v2.0.9
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
?   	github.com/retalkgo/retalk/server/router	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 57f90a7 to 84c8cfa Compare September 8, 2025 16:24
@github-actions
Copy link

github-actions bot commented Sep 8, 2025

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading github.com/cloudwego/hertz v0.10.2
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/eko/gocache/store/bigcache/v4 v4.2.2
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading github.com/golang/mock v1.6.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading google.golang.org/protobuf v1.34.1
go: downloading github.com/bytedance/gopkg v0.1.1
go: downloading github.com/fsnotify/fsnotify v1.5.4
go: downloading github.com/cloudwego/netpoll v0.7.0
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/nyaruka/phonenumbers v1.0.55
go: downloading github.com/bytedance/sonic v1.14.0
go: downloading github.com/josharian/intern v1.0.0
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/cloudwego/gopkg v0.1.4
go: downloading github.com/golang/protobuf v1.5.3
go: downloading github.com/cloudwego/base64x v0.1.5
go: downloading github.com/bytedance/sonic/loader v0.3.0
go: downloading golang.org/x/arch v0.0.0-20210923205945-b76863e36670
go: downloading github.com/twitchyliquid64/golang-asm v0.15.1
go: downloading github.com/klauspost/cpuid/v2 v2.0.9
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/crypto/password.go:4:2: missing go.sum entry for module providing package golang.org/x/crypto/bcrypt (imported by github.com/retalkgo/retalk/internal/crypto); to add:
	go get github.com/retalkgo/retalk/internal/crypto
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
?   	github.com/retalkgo/retalk/server/router	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 84c8cfa to e86c8d2 Compare September 10, 2025 12:45
@github-actions
Copy link

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/cloudwego/hertz v0.10.2
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/eko/gocache/store/bigcache/v4 v4.2.2
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading github.com/golang/mock v1.6.0
go: downloading google.golang.org/protobuf v1.34.1
go: downloading github.com/bytedance/gopkg v0.1.1
go: downloading github.com/fsnotify/fsnotify v1.5.4
go: downloading github.com/cloudwego/netpoll v0.7.0
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/nyaruka/phonenumbers v1.0.55
go: downloading github.com/bytedance/sonic v1.14.0
go: downloading github.com/josharian/intern v1.0.0
go: downloading github.com/golang/protobuf v1.5.3
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/cloudwego/gopkg v0.1.4
go: downloading github.com/cloudwego/base64x v0.1.5
go: downloading golang.org/x/arch v0.0.0-20210923205945-b76863e36670
go: downloading github.com/bytedance/sonic/loader v0.3.0
go: downloading github.com/twitchyliquid64/golang-asm v0.15.1
go: downloading github.com/klauspost/cpuid/v2 v2.0.9
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/crypto/password.go:4:2: missing go.sum entry for module providing package golang.org/x/crypto/bcrypt (imported by github.com/retalkgo/retalk/internal/crypto); to add:
	go get github.com/retalkgo/retalk/internal/crypto
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
?   	github.com/retalkgo/retalk/server/router	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e86c8d2 to 4b697c4 Compare September 13, 2025 09:11
@github-actions
Copy link

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading github.com/eko/gocache/store/bigcache/v4 v4.2.2
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/cloudwego/hertz v0.10.2
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading github.com/golang/mock v1.6.0
go: downloading google.golang.org/protobuf v1.34.1
go: downloading github.com/bytedance/gopkg v0.1.1
go: downloading github.com/fsnotify/fsnotify v1.5.4
go: downloading github.com/cloudwego/netpoll v0.7.0
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/nyaruka/phonenumbers v1.0.55
go: downloading github.com/bytedance/sonic v1.14.0
go: downloading github.com/josharian/intern v1.0.0
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/cloudwego/gopkg v0.1.4
go: downloading golang.org/x/arch v0.0.0-20210923205945-b76863e36670
go: downloading github.com/cloudwego/base64x v0.1.5
go: downloading github.com/bytedance/sonic/loader v0.3.0
go: downloading github.com/twitchyliquid64/golang-asm v0.15.1
go: downloading github.com/klauspost/cpuid/v2 v2.0.9
go: downloading github.com/golang/protobuf v1.5.3
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/crypto/password.go:4:2: missing go.sum entry for module providing package golang.org/x/crypto/bcrypt (imported by github.com/retalkgo/retalk/internal/crypto); to add:
	go get github.com/retalkgo/retalk/internal/crypto
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
?   	github.com/retalkgo/retalk/server/router	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4b697c4 to 77c8a8c Compare October 1, 2025 02:50
@github-actions
Copy link

github-actions bot commented Oct 1, 2025

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading gorm.io/gorm v1.30.1
go: downloading github.com/eko/gocache/store/bigcache/v4 v4.2.2
go: downloading github.com/cloudwego/hertz v0.10.2
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading github.com/jinzhu/now v1.1.5
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading github.com/golang/mock v1.6.0
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/jinzhu/inflection v1.0.0
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading google.golang.org/protobuf v1.34.1
go: downloading github.com/bytedance/gopkg v0.1.1
go: downloading github.com/fsnotify/fsnotify v1.5.4
go: downloading github.com/cloudwego/netpoll v0.7.0
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/nyaruka/phonenumbers v1.0.55
go: downloading github.com/bytedance/sonic v1.14.0
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/josharian/intern v1.0.0
go: downloading github.com/cloudwego/gopkg v0.1.4
go: downloading github.com/golang/protobuf v1.5.3
go: downloading github.com/cloudwego/base64x v0.1.5
go: downloading golang.org/x/arch v0.0.0-20210923205945-b76863e36670
go: downloading github.com/klauspost/cpuid/v2 v2.0.9
go: downloading github.com/bytedance/sonic/loader v0.3.0
go: downloading github.com/twitchyliquid64/golang-asm v0.15.1
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/crypto/password.go:4:2: missing go.sum entry for module providing package golang.org/x/crypto/bcrypt (imported by github.com/retalkgo/retalk/internal/crypto); to add:
	go get github.com/retalkgo/retalk/internal/crypto
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
?   	github.com/retalkgo/retalk/internal/model	[no test files]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
?   	github.com/retalkgo/retalk/server/router	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 77c8a8c to 60c5b98 Compare October 1, 2025 20:32
@github-actions
Copy link

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading github.com/cloudwego/hertz v0.10.2
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading google.golang.org/protobuf v1.34.1
go: downloading github.com/bytedance/gopkg v0.1.1
go: downloading github.com/fsnotify/fsnotify v1.5.4
go: downloading github.com/cloudwego/netpoll v0.7.0
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/nyaruka/phonenumbers v1.0.55
go: downloading github.com/bytedance/sonic v1.14.0
go: downloading github.com/josharian/intern v1.0.0
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/cloudwego/gopkg v0.1.4
go: downloading golang.org/x/arch v0.0.0-20210923205945-b76863e36670
go: downloading github.com/cloudwego/base64x v0.1.5
go: downloading github.com/bytedance/sonic/loader v0.3.0
go: downloading github.com/twitchyliquid64/golang-asm v0.15.1
go: downloading github.com/klauspost/cpuid/v2 v2.0.9
go: downloading github.com/golang/protobuf v1.5.3
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/crypto/password.go:4:2: missing go.sum entry for module providing package golang.org/x/crypto/bcrypt (imported by github.com/retalkgo/retalk/internal/crypto); to add:
	go get github.com/retalkgo/retalk/internal/crypto
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
?   	github.com/retalkgo/retalk/server/router	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5ab2a4a to e0dbcee Compare October 18, 2025 21:43
@github-actions
Copy link

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading golang.org/x/sync v0.16.0
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading github.com/cloudwego/hertz v0.10.2
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading google.golang.org/protobuf v1.34.1
go: downloading github.com/bytedance/gopkg v0.1.1
go: downloading github.com/fsnotify/fsnotify v1.5.4
go: downloading github.com/cloudwego/netpoll v0.7.0
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/nyaruka/phonenumbers v1.0.55
go: downloading github.com/bytedance/sonic v1.14.0
go: downloading github.com/josharian/intern v1.0.0
go: downloading github.com/golang/protobuf v1.5.3
go: downloading github.com/cloudwego/gopkg v0.1.4
go: downloading github.com/cloudwego/base64x v0.1.5
go: downloading golang.org/x/arch v0.0.0-20210923205945-b76863e36670
go: downloading github.com/bytedance/sonic/loader v0.3.0
go: downloading github.com/twitchyliquid64/golang-asm v0.15.1
go: downloading github.com/klauspost/cpuid/v2 v2.0.9
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/crypto/password.go:4:2: missing go.sum entry for module providing package golang.org/x/crypto/bcrypt (imported by github.com/retalkgo/retalk/internal/crypto); to add:
	go get github.com/retalkgo/retalk/internal/crypto
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
?   	github.com/retalkgo/retalk/internal/docs	[no test files]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
?   	github.com/retalkgo/retalk/server/router	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e0dbcee to ee92433 Compare October 19, 2025 02:44
@github-actions
Copy link

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading github.com/cloudwego/hertz v0.10.2
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading google.golang.org/protobuf v1.34.1
go: downloading github.com/bytedance/gopkg v0.1.1
go: downloading github.com/fsnotify/fsnotify v1.5.4
go: downloading github.com/cloudwego/netpoll v0.7.0
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/nyaruka/phonenumbers v1.0.55
go: downloading github.com/bytedance/sonic v1.14.0
go: downloading github.com/josharian/intern v1.0.0
go: downloading github.com/cloudwego/gopkg v0.1.4
go: downloading github.com/cloudwego/base64x v0.1.5
go: downloading golang.org/x/arch v0.0.0-20210923205945-b76863e36670
go: downloading github.com/klauspost/cpuid/v2 v2.0.9
go: downloading github.com/bytedance/sonic/loader v0.3.0
go: downloading github.com/twitchyliquid64/golang-asm v0.15.1
go: downloading github.com/golang/protobuf v1.5.3
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/crypto/password.go:4:2: missing go.sum entry for module providing package golang.org/x/crypto/bcrypt (imported by github.com/retalkgo/retalk/internal/crypto); to add:
	go get github.com/retalkgo/retalk/internal/crypto
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
?   	github.com/retalkgo/retalk/server/router	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ee92433 to 8387d09 Compare October 21, 2025 10:47
@github-actions
Copy link

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/josharian/intern v1.0.0
go: downloading golang.org/x/mod v0.26.0
# github.com/retalkgo/retalk
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/crypto/password.go:4:2: missing go.sum entry for module providing package golang.org/x/crypto/bcrypt (imported by github.com/retalkgo/retalk/internal/crypto); to add:
	go get github.com/retalkgo/retalk/internal/crypto
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
# github.com/retalkgo/retalk/server/router
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server/router
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server/router
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/router [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8387d09 to bfdb942 Compare October 23, 2025 16:37
@github-actions
Copy link

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/josharian/intern v1.0.0
go: downloading golang.org/x/mod v0.26.0
# github.com/retalkgo/retalk
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/crypto/password.go:4:2: missing go.sum entry for module providing package golang.org/x/crypto/bcrypt (imported by github.com/retalkgo/retalk/internal/crypto); to add:
	go get github.com/retalkgo/retalk/internal/crypto
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
# github.com/retalkgo/retalk/server/router
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server/router
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server/router
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/router [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bfdb942 to 1a6e59e Compare November 2, 2025 17:53
@github-actions
Copy link

github-actions bot commented Nov 2, 2025

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/josharian/intern v1.0.0
# github.com/retalkgo/retalk
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/crypto/password.go:4:2: missing go.sum entry for module providing package golang.org/x/crypto/bcrypt (imported by github.com/retalkgo/retalk/internal/crypto); to add:
	go get github.com/retalkgo/retalk/internal/crypto
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
# github.com/retalkgo/retalk/server/router
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server/router
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server/router
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/router [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1a6e59e to df6ad1a Compare November 5, 2025 19:34
@github-actions
Copy link

github-actions bot commented Nov 5, 2025

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/stretchr/testify v1.10.0
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
go: downloading github.com/pmezard/go-difflib v1.0.0
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/josharian/intern v1.0.0
# github.com/retalkgo/retalk
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/crypto/password.go:4:2: missing go.sum entry for module providing package golang.org/x/crypto/bcrypt (imported by github.com/retalkgo/retalk/internal/crypto); to add:
	go get github.com/retalkgo/retalk/internal/crypto
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
# github.com/retalkgo/retalk/server/router
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server/router
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server/router
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/router [setup failed]
=== RUN   TestNewJwtManager
--- PASS: TestNewJwtManager (0.00s)
=== RUN   TestJwt
--- PASS: TestJwt (0.00s)
PASS
ok  	github.com/retalkgo/retalk/internal/auth	0.005s
=== RUN   TestLaunchConfig_LoadAndDefaults
--- PASS: TestLaunchConfig_LoadAndDefaults (0.00s)
=== RUN   TestLaunchConfig_DefaultsApplied
--- PASS: TestLaunchConfig_DefaultsApplied (0.00s)
PASS
ok  	github.com/retalkgo/retalk/internal/config	0.004s
=== RUN   TestGetGravatarURL
--- PASS: TestGetGravatarURL (0.00s)
PASS
ok  	github.com/retalkgo/retalk/internal/gravatar	0.003s
?   	github.com/retalkgo/retalk/internal/version	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from df6ad1a to 0e67fd8 Compare November 5, 2025 22:38
@github-actions
Copy link

github-actions bot commented Nov 5, 2025

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/josharian/intern v1.0.0
# github.com/retalkgo/retalk
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/crypto/password.go:4:2: missing go.sum entry for module providing package golang.org/x/crypto/bcrypt (imported by github.com/retalkgo/retalk/internal/crypto); to add:
	go get github.com/retalkgo/retalk/internal/crypto
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
# github.com/retalkgo/retalk/server/router
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server/router
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server/router
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/router [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0e67fd8 to 3e2c29e Compare November 8, 2025 13:07
@github-actions
Copy link

github-actions bot commented Nov 8, 2025

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/josharian/intern v1.0.0
# github.com/retalkgo/retalk
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/crypto/password.go:4:2: missing go.sum entry for module providing package golang.org/x/crypto/bcrypt (imported by github.com/retalkgo/retalk/internal/crypto); to add:
	go get github.com/retalkgo/retalk/internal/crypto
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
# github.com/retalkgo/retalk/server/router
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server/router
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server/router
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/router [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3e2c29e to a6a4c95 Compare November 11, 2025 20:50
@github-actions
Copy link

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/josharian/intern v1.0.0
# github.com/retalkgo/retalk
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/crypto/password.go:4:2: missing go.sum entry for module providing package golang.org/x/crypto/bcrypt (imported by github.com/retalkgo/retalk/internal/crypto); to add:
	go get github.com/retalkgo/retalk/internal/crypto
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
# github.com/retalkgo/retalk/server/router
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server/router
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server/router
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/router [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a6a4c95 to 4469f8f Compare November 19, 2025 21:30
@github-actions
Copy link

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/josharian/intern v1.0.0
# github.com/retalkgo/retalk
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/crypto/password.go:4:2: missing go.sum entry for module providing package golang.org/x/crypto/bcrypt (imported by github.com/retalkgo/retalk/internal/crypto); to add:
	go get github.com/retalkgo/retalk/internal/crypto
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
# github.com/retalkgo/retalk/server/router
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server/router
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server/router
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/router [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4469f8f to 0967ae2 Compare November 26, 2025 16:04
@github-actions
Copy link

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/josharian/intern v1.0.0
# github.com/retalkgo/retalk
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/crypto/password.go:4:2: missing go.sum entry for module providing package golang.org/x/crypto/bcrypt (imported by github.com/retalkgo/retalk/internal/crypto); to add:
	go get github.com/retalkgo/retalk/internal/crypto
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
# github.com/retalkgo/retalk/server/router
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server/router
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server/router
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/router [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0967ae2 to 3d2119d Compare December 1, 2025 15:49
@github-actions
Copy link

github-actions bot commented Dec 1, 2025

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/josharian/intern v1.0.0
# github.com/retalkgo/retalk
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/crypto/password.go:4:2: missing go.sum entry for module providing package golang.org/x/crypto/bcrypt (imported by github.com/retalkgo/retalk/internal/crypto); to add:
	go get github.com/retalkgo/retalk/internal/crypto
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
# github.com/retalkgo/retalk/server/router
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server/router
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server/router
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/router [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3d2119d to d8c024c Compare December 2, 2025 10:07
@github-actions
Copy link

github-actions bot commented Dec 2, 2025

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/eko/gocache/lib/v4 v4.2.0
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading go.uber.org/mock v0.4.0
go: downloading github.com/vmihailenco/msgpack/v5 v5.4.1
go: downloading golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading github.com/prometheus/client_golang v1.19.0
go: downloading github.com/vmihailenco/tagparser/v2 v2.0.0
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/cespare/xxhash/v2 v2.3.0
go: downloading github.com/prometheus/client_model v0.6.1
go: downloading github.com/prometheus/common v0.52.3
go: downloading github.com/prometheus/procfs v0.13.0
go: downloading google.golang.org/protobuf v1.34.1
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/josharian/intern v1.0.0
# github.com/retalkgo/retalk
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/eko/gocache/lib/[email protected]/cache/loadable.go:9:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
../../../go/pkg/mod/github.com/eko/gocache/lib/[email protected]/cache/loadable.go:9:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/crypto/password.go:4:2: missing go.sum entry for module providing package golang.org/x/crypto/bcrypt (imported by github.com/retalkgo/retalk/internal/crypto); to add:
	go get github.com/retalkgo/retalk/internal/crypto
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
../../../go/pkg/mod/github.com/eko/gocache/lib/[email protected]/cache/loadable.go:9:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/eko/gocache/lib/[email protected]/cache/loadable.go:9:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
# github.com/retalkgo/retalk/server/router
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server/router
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server/router
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/router [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
FAIL

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d8c024c to 7feaf58 Compare December 2, 2025 13:54
@github-actions
Copy link

github-actions bot commented Dec 2, 2025

❌ 部分测试用例未通过。

点击展开/折叠详细日志
go: downloading github.com/creasty/defaults v1.8.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/driver/postgres v1.6.0
go: downloading gorm.io/driver/sqlite v1.6.0
go: downloading github.com/swaggo/swag v1.16.6
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/alicebob/miniredis/v2 v2.35.0
go: downloading go.yaml.in/yaml/v2 v2.4.2
go: downloading github.com/go-sql-driver/mysql v1.8.1
go: downloading github.com/jackc/pgx/v5 v5.6.0
go: downloading github.com/mattn/go-sqlite3 v1.14.22
go: downloading github.com/KyleBanks/depth v1.2.1
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading golang.org/x/tools v0.35.0
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading golang.org/x/text v0.28.0
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/josharian/intern v1.0.0
# github.com/retalkgo/retalk
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk [setup failed]
# github.com/retalkgo/retalk/internal/auth
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/auth [setup failed]
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/cache
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
FAIL	github.com/retalkgo/retalk/internal/cache [setup failed]
# github.com/retalkgo/retalk/internal/config
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/config [setup failed]
# github.com/retalkgo/retalk/internal/crypto
internal/crypto/password.go:4:2: missing go.sum entry for module providing package golang.org/x/crypto/bcrypt (imported by github.com/retalkgo/retalk/internal/crypto); to add:
	go get github.com/retalkgo/retalk/internal/crypto
FAIL	github.com/retalkgo/retalk/internal/crypto [setup failed]
# github.com/retalkgo/retalk/internal/db
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/internal/db
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
FAIL	github.com/retalkgo/retalk/internal/db [setup failed]
# github.com/retalkgo/retalk/internal/docs
../../../go/pkg/mod/golang.org/x/[email protected]/internal/imports/source_env.go:13:2: missing go.sum entry for module providing package golang.org/x/sync/errgroup (imported by golang.org/x/tools/internal/imports); to add:
	go get golang.org/x/tools/internal/[email protected]
FAIL	github.com/retalkgo/retalk/internal/docs [setup failed]
# github.com/retalkgo/retalk/internal/gravatar
internal/auth/jwt_test.go:6:2: missing go.sum entry for module providing package github.com/stretchr/testify/assert (imported by github.com/retalkgo/retalk/internal/auth); to add:
	go get -t github.com/retalkgo/retalk/internal/auth
FAIL	github.com/retalkgo/retalk/internal/gravatar [setup failed]
# github.com/retalkgo/retalk/internal/model
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/model [setup failed]
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/internal/store
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
FAIL	github.com/retalkgo/retalk/internal/store [setup failed]
# github.com/retalkgo/retalk/server
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
server/server.go:7:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/common/hlog (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server
internal/model/base.go:6:2: missing go.sum entry for module providing package gorm.io/gorm (imported by github.com/retalkgo/retalk/internal/db); to add:
	go get github.com/retalkgo/retalk/internal/db
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:16:2: missing go.sum entry for module providing package gorm.io/gorm/callbacks (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:10:2: missing go.sum entry for module providing package gorm.io/gorm/clause (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:18:2: missing go.sum entry for module providing package gorm.io/gorm/logger (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:11:2: missing go.sum entry for module providing package gorm.io/gorm/migrator (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/migrator.go:12:2: missing go.sum entry for module providing package gorm.io/gorm/schema (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/gorm.io/driver/[email protected]/mysql.go:21:2: missing go.sum entry for module providing package gorm.io/gorm/utils (imported by gorm.io/driver/mysql); to add:
	go get gorm.io/driver/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/pgx/[email protected]/pgconn/auth_scram.go:26:2: missing go.sum entry for module providing package golang.org/x/crypto/pbkdf2 (imported by github.com/jackc/pgx/v5/pgconn); to add:
	go get github.com/jackc/pgx/v5/[email protected]
# github.com/retalkgo/retalk/server
../../../go/pkg/mod/github.com/jackc/puddle/[email protected]/pool.go:11:2: missing go.sum entry for module providing package golang.org/x/sync/semaphore (imported by github.com/jackc/puddle/v2); to add:
	go get github.com/jackc/puddle/[email protected]
# github.com/retalkgo/retalk/server
internal/cache/cache.go:10:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/cache (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:11:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/marshaler (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:12:2: missing go.sum entry for module providing package github.com/eko/gocache/lib/v4/store (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:13:2: missing go.sum entry for module providing package github.com/eko/gocache/store/bigcache/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:14:2: missing go.sum entry for module providing package github.com/eko/gocache/store/redis/v4 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/cache.go:15:2: missing go.sum entry for module providing package github.com/redis/go-redis/v9 (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
internal/cache/query.go:4:2: missing go.sum entry for module providing package golang.org/x/sync/singleflight (imported by github.com/retalkgo/retalk/internal/cache); to add:
	go get github.com/retalkgo/retalk/internal/cache
# github.com/retalkgo/retalk/server
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server [setup failed]
# github.com/retalkgo/retalk/server/common
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/common [setup failed]
# github.com/retalkgo/retalk/server/handler
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/handler [setup failed]
# github.com/retalkgo/retalk/server/router
server/server.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app/server (imported by github.com/retalkgo/retalk/server); to add:
	go get github.com/retalkgo/retalk/server
# github.com/retalkgo/retalk/server/router
server/router/helthz.go:4:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/route (imported by github.com/retalkgo/retalk/server/router); to add:
	go get github.com/retalkgo/retalk/server/router
# github.com/retalkgo/retalk/server/router
server/handler/healthz.go:6:2: missing go.sum entry for module providing package github.com/cloudwego/hertz/pkg/app (imported by github.com/retalkgo/retalk/server/common); to add:
	go get github.com/retalkgo/retalk/server/common
FAIL	github.com/retalkgo/retalk/server/router [setup failed]
?   	github.com/retalkgo/retalk/internal/version	[no test files]
FAIL

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant