From aa253c524ad789c0d0eccad57322b18ae469edbc Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Wed, 18 Mar 2026 17:27:06 -0300 Subject: [PATCH] chore(taskfile): enhance `deps` task to work for recent releases --- Taskfile.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Taskfile.yaml b/Taskfile.yaml index 38e8a16313d17b9b1826ce4b6f055d39537916ec..eaac36ef7a2e634f400ad24433c66cfb6bc2fa7b 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -180,9 +180,14 @@ tasks: deps: desc: Update Fantasy and Catwalk + env: + # The Go proxy takes a bit of time to see the latest release. Setting + # these bypass it to ensure we can update to a release from a minute ago. + GOPROXY: direct + GONOSUMDB: charm.land/* cmds: - - go get charm.land/fantasy - - go get charm.land/catwalk + - go get charm.land/fantasy@latest + - go get charm.land/catwalk@latest - go mod tidy sqlc: