aboutsummaryrefslogtreecommitdiffstats
path: root/modules/cache
diff options
context:
space:
mode:
authortechknowlogick <techknowlogick@gitea.com>2024-09-09 22:23:07 -0400
committerGitHub <noreply@github.com>2024-09-10 02:23:07 +0000
commitd9a7748cdc3f13392acbde87edd18602b566c216 (patch)
tree0f7191740e0335ccf61f12bb94d40ea36b7b0ed7 /modules/cache
parent1620e3f03bad1feb22c8e9c3c9baf4da04aaefe5 (diff)
downloadgitea-d9a7748cdc3f13392acbde87edd18602b566c216.tar.gz
gitea-d9a7748cdc3f13392acbde87edd18602b566c216.zip
bump to go 1.23 (#31855)
Diffstat (limited to 'modules/cache')
-rw-r--r--modules/cache/context.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/cache/context.go b/modules/cache/context.go
index 5cca5afd6e..484cee659a 100644
--- a/modules/cache/context.go
+++ b/modules/cache/context.go
@@ -109,7 +109,8 @@ func WithCacheContext(ctx context.Context) context.Context {
return ctx
}
}
- return context.WithValue(ctx, cacheContextKey, &cacheContext{
+ // FIXME: review the use of this nolint directive
+ return context.WithValue(ctx, cacheContextKey, &cacheContext{ //nolint:staticcheck
data: make(map[any]map[any]any),
created: timeNow(),
})