diff options
author | techknowlogick <techknowlogick@gitea.io> | 2022-03-08 06:15:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 19:15:30 +0800 |
commit | 1546580f9e6bcb5fcd057e0cb10b1884efee3763 (patch) | |
tree | beefcd5d094757b0483f00ab57dde8be83bb2204 /contrib | |
parent | 8ddb5490e8a36393916846ede746dce49f4fade6 (diff) | |
download | gitea-1546580f9e6bcb5fcd057e0cb10b1884efee3763.tar.gz gitea-1546580f9e6bcb5fcd057e0cb10b1884efee3763.zip |
bump go deps (#19021)
* update gitea.com/go-chi/binding
* update gitea.com/go-chi/cache
* update github.com/42wim/sshsig
* update github.com/PuerkitoBio/goquery
* update github.com/blevesearch/bleve/v2
* update github.com/caddyserver/certmagic
* update github.com/denisenkom/go-mssqldb
* update github.com/duo-labs/webauthn
* update github.com/dustin/go-humanize
* update github.com/editorconfig/editorconfig-core-go/v2
* update github.com/ethantkoenig/rupture
* update github.com/go-chi/chi/v5
* update github.com/go-git/go-git/v5
* update github.com/go-ldap/ldap/v3
* update github.com/go-redis/redis/v8
* update github.com/go-swagger/go-swagger
* update github.com/gogs/chardet
* update github.com/golang-jwt/jwt/v4
* update github.com/hashicorp/go-version
* update github.com/jaytaylor/html2text
* update github.com/klauspost/compress
* update github.com/lib/pq
* update github.com/markbates/goth
* update github.com/mattn/go-sqlite3
* update github.com/mholt/archiver/v3
* update github.com/microcosm-cc/bluemonday
* update github.com/minio/minio-go/v7
* update github.com/msteinert/pam
* update github.com/niklasfasching/go-org
* update github.com/olivere/elastic/v7
* update github.com/prometheus/client_golang
* update github.com/quasoft/websspi
* update github.com/stretchr/testify
* update github.com/unknwon/i18n
* update github.com/unrolled/render
* update github.com/xanzy/go-gitlab
* update github.com/yuin/goldmark
* update github.com/yuin/goldmark-highlighting
* update github.com/yuin/goldmark-meta
* post make vendor
Signed-off-by: Andrew Thornton <art27@cantab.net>
* add make vendor back into update_dependencies.sh
Signed-off-by: Andrew Thornton <art27@cantab.net>
* Update update_dependencies.sh
* Update contrib/update_dependencies.sh
Co-authored-by: zeripath <art27@cantab.net>
* update mvdan.cc/xurls/v2
Co-authored-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/update_dependencies.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/update_dependencies.sh b/contrib/update_dependencies.sh index f6f26c66cb..5700a19897 100755 --- a/contrib/update_dependencies.sh +++ b/contrib/update_dependencies.sh @@ -4,5 +4,5 @@ grep 'git' go.mod | grep '\.com' | grep -v indirect | grep -v replace | cut -f 2 go get -u "$line" make vendor git add . - git commit -S -m "update $line" + git commit -m "update $line" done |