-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathdevbox.json
33 lines (33 loc) · 926 Bytes
/
devbox.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"packages": {
"awscli2": "latest",
"curl": "latest",
"direnv": "latest",
"docker": "latest",
"docker-buildx": "latest",
"envsubst": "latest",
"fluxcd": "latest",
"github-cli": "latest",
"gitlint": "latest",
"go": "1.22",
"gojq": "latest",
"golangci-lint": "latest",
"just": "latest",
"kubernetes-helm": "latest",
"kustomize": "latest",
"oras": "latest",
"pre-commit": "latest",
"rsync": "latest",
"yq-go": "latest"
},
"shell": {
"scripts": {
"sync-go-version": [
"VERSION=$(go mod edit -json hack/release/go.mod | jq -r .Go)",
"tmp=$(mktemp)",
"jq \".packages.go = \\\"${VERSION}\\\"\" devbox.json > ${tmp}",
"mv ${tmp} devbox.json"
]
}
}
}