chore: fix mods

This commit is contained in:
Jason Song 2022-10-08 12:05:23 +08:00
parent c73dbab6e5
commit 5093d6b48e
4 changed files with 117 additions and 593 deletions

105
assets/go-licenses.json generated

File diff suppressed because one or more lines are too long

6
go.mod
View File

@ -6,7 +6,7 @@ require (
code.gitea.io/gitea-vet v0.2.2-0.20220122151748-48ebc902541b
code.gitea.io/sdk/gitea v0.15.1
codeberg.org/gusted/mcaptcha v0.0.0-20220723083913-4f3072e1d570
gitea.com/gitea/proto-go v0.0.0-20220901135226-82a982903134
gitea.com/gitea/proto-go v0.0.0-20220921035813-6a5980d5b2a2
gitea.com/go-chi/binding v0.0.0-20220309004920-114340dabecb
gitea.com/go-chi/cache v0.2.0
gitea.com/go-chi/captcha v0.0.0-20211013065431-70641c1a35d5
@ -76,7 +76,7 @@ require (
github.com/microcosm-cc/bluemonday v1.0.20
github.com/minio/minio-go/v7 v7.0.39
github.com/msteinert/pam v1.1.0
github.com/nektos/act v0.2.24
github.com/nektos/act v0.2.32
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
github.com/niklasfasching/go-org v1.6.5
github.com/oliamb/cutter v0.2.2
@ -178,7 +178,7 @@ require (
github.com/go-asn1-ber/asn1-ber v1.5.4 // indirect
github.com/go-enry/go-oniguruma v1.2.1 // indirect
github.com/go-git/gcfg v1.5.0 // indirect
github.com/go-ini/ini v1.62.0 // indirect
github.com/go-ini/ini v1.67.0 // indirect
github.com/go-openapi/analysis v0.21.4 // indirect
github.com/go-openapi/errors v0.20.3 // indirect
github.com/go-openapi/inflect v0.19.0 // indirect

596
go.sum

File diff suppressed because it is too large Load Diff

View File

@ -10,7 +10,6 @@ import (
"fmt"
"code.gitea.io/gitea/core"
"code.gitea.io/gitea/models"
bots_model "code.gitea.io/gitea/models/bots"
"code.gitea.io/gitea/models/db"
"code.gitea.io/gitea/models/perm"
@ -219,5 +218,5 @@ func (a *botsNotifier) NotifySyncCreateRef(doer *user_model.User, repo *repo_mod
func (a *botsNotifier) NotifySyncDeleteRef(doer *user_model.User, repo *repo_model.Repository, refType, refFullName string) {
}
func (a *botsNotifier) NotifyNewRelease(rel *models.Release) {
func (a *botsNotifier) NotifyNewRelease(rel *repo_model.Release) {
}