You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# TODO: we may not need 'get_env' once https://github.com/jdx/mise/discussions/6339 is fixed
12
-
go = "{{ get_env(name='GO_VERSION_MISE', default='latest') }}"
11
+
go = "{{ env.GO_VERSION_MISE }}"
13
12
node = '20.19.5'
14
13
python = '3.11.8'
15
14
"vfox:version-fox/vfox-dotnet" = "8.0.20"# vfox backend doesn't work on Windows, gives "error converting Lua table to PreInstall (no version returned from vfox plugin)" https://github.com/jdx/mise/discussions/5876 https://github.com/jdx/mise/discussions/5550
16
15
# Corretto version used as Java SE/OpenJDK version no longer offered
golangci-lint = "1.64.8"# See note about about overrides if you need to customize this.
23
+
golangci-lint = "2.5.0"# See note about about overrides if you need to customize this.
25
24
"npm:yarn" = "1.22.22"
26
25
27
26
[settings]
28
27
experimental = true# Required for Go binaries (e.g. pulumictl).
29
28
lockfile = false
30
29
http_retries = 3
31
30
pin = true# `mise use` should pin versions instead of defaulting to latest.
31
+
fetch_remote_versions_cache = "24h"# Mise queries versions even if they're pinned to confirm they exist. Reduce GitHub API calls by doing that less often.
0 commit comments