diff options
author | silverwind <me@silverwind.io> | 2024-12-19 19:17:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-19 19:17:55 +0100 |
commit | 626b27bea56a81055a796d452a9ef4fd6e0f4fca (patch) | |
tree | e09993b72ccdb2c919bcc5cba68732460bc5cf28 /modules/markup/internal | |
parent | 581e52b3e78df0da7b31cea107c675dace5e871c (diff) | |
download | gitea-626b27bea56a81055a796d452a9ef4fd6e0f4fca.tar.gz gitea-626b27bea56a81055a796d452a9ef4fd6e0f4fca.zip |
Update go tool dependencies (#32916)
Update all go tool dependencies to latest version. WIP because I think
there are new gopls errors, would like to confirm them on CI first. Here
is from a local run:
```
modules/markup/markdown/goldmark.go:115:37-53: unnecessary type arguments
modules/markup/html.go:45:32-49: unnecessary type arguments
modules/markup/internal/renderinternal.go:20:33-49: unnecessary type arguments
modules/markup/common/linkify.go:27:32-49: unnecessary type arguments
modules/util/time_str.go:28:39-63: unnecessary type arguments
routers/web/repo/pull.go:704:19: impossible condition: non-nil == nil
modules/util/util_test.go:248:14-23: unused parameter: other
```
~~Backport because the `gxz` update might have security benefits.~~
Diffstat (limited to 'modules/markup/internal')
-rw-r--r-- | modules/markup/internal/renderinternal.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/markup/internal/renderinternal.go b/modules/markup/internal/renderinternal.go index 4775fecfc7..4d58f160a9 100644 --- a/modules/markup/internal/renderinternal.go +++ b/modules/markup/internal/renderinternal.go @@ -17,7 +17,7 @@ import ( "golang.org/x/net/html" ) -var reAttrClass = sync.OnceValue[*regexp.Regexp](func() *regexp.Regexp { +var reAttrClass = sync.OnceValue(func() *regexp.Regexp { // TODO: it isn't a problem at the moment because our HTML contents are always well constructed return regexp.MustCompile(`(<[^>]+)\s+class="([^"]+)"([^>]*>)`) }) |