This repository was archived by the owner on Oct 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +38
-7
lines changed Expand file tree Collapse file tree 3 files changed +38
-7
lines changed Original file line number Diff line number Diff line change 2213
2213
" * 21 * * *"
2214
2214
]
2215
2215
},
2216
+ {
2217
+ "matchFiles" : [
2218
+ " ^tools/guac/manifest.yaml$"
2219
+ ],
2220
+ "matchPackageNames" : [
2221
+ " guacsec/guac"
2222
+ ],
2223
+ "schedule" : [
2224
+ " * 10,20 * * *"
2225
+ ]
2226
+ },
2216
2227
{
2217
2228
"matchFiles" : [
2218
2229
" ^tools/gvisor/manifest.yaml$"
7804
7815
" version: \" ?(?<currentValue>.*?)\" ?\\ n"
7805
7816
]
7806
7817
},
7818
+ {
7819
+ "datasourceTemplate" : " github-tags" ,
7820
+ "depNameTemplate" : " guacsec/guac" ,
7821
+ "extractVersionTemplate" : " ^v(?<version>.+?)$" ,
7822
+ "fileMatch" : [
7823
+ " ^tools/guac/manifest.yaml$"
7824
+ ],
7825
+ "matchStrings" : [
7826
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
7827
+ ]
7828
+ },
7807
7829
{
7808
7830
"datasourceTemplate" : " github-tags" ,
7809
7831
"depNameTemplate" : " google/gvisor" ,
Original file line number Diff line number Diff line change @@ -18,9 +18,13 @@ ENV CGO_ENABLED=0
18
18
RUN <<EOF
19
19
git clone -q --config advice.detachedHead=false --depth 1 --branch "${version}" https://github.com/guacsec/guac .
20
20
make build
21
- cp bin/guacone "${prefix}${target}/bin/"
21
+ cp bin/guac* "${prefix}${target}/bin/"
22
22
EOF
23
23
RUN <<EOF
24
+ "${prefix}${target}/bin/guaccollect" completion bash >"${prefix}${target}/share/bash-completion/completions/guaccollect"
25
+ "${prefix}${target}/bin/guaccollect" completion fish >"${prefix}${target}/share/fish/vendor_completions.d/guaccollect.fish"
26
+ "${prefix}${target}/bin/guaccollect" completion zsh >"${prefix}${target}/share/zsh/vendor-completions/_guaccollect"
27
+
24
28
"${prefix}${target}/bin/guacone" completion bash >"${prefix}${target}/share/bash-completion/completions/guacone"
25
29
"${prefix}${target}/bin/guacone" completion fish >"${prefix}${target}/share/fish/vendor_completions.d/guacone.fish"
26
30
"${prefix}${target}/bin/guacone" completion zsh >"${prefix}${target}/share/zsh/vendor-completions/_guacone"
Original file line number Diff line number Diff line change 1
1
name : guac
2
- version : " main "
2
+ version : " 0.1.0 "
3
3
check : " " # No version parameter
4
4
build_dependencies :
5
- - go
5
+ - go
6
6
tags :
7
- - category/security
8
- - type/cli
9
- - lang/go
7
+ - category/security
8
+ - type/cli
9
+ - lang/go
10
10
homepage : https://github.com/guacsec/guac
11
- description : Aggregate software security metadata into a high fidelity graph database
11
+ description : Aggregate software security metadata into a high fidelity graph database
12
+ renovate :
13
+ datasource : github-tags
14
+ package : guacsec/guac
15
+ extractVersion : ^v(?<version>.+?)$
16
+ priority : medium
You can’t perform that action at this time.
0 commit comments