Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit 17c5d33

Browse files
committed
Improved after beta release
1 parent ce5e7cc commit 17c5d33

File tree

3 files changed

+38
-7
lines changed

3 files changed

+38
-7
lines changed

renovate.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2213,6 +2213,17 @@
22132213
"* 21 * * *"
22142214
]
22152215
},
2216+
{
2217+
"matchFiles": [
2218+
"^tools/guac/manifest.yaml$"
2219+
],
2220+
"matchPackageNames": [
2221+
"guacsec/guac"
2222+
],
2223+
"schedule": [
2224+
"* 10,20 * * *"
2225+
]
2226+
},
22162227
{
22172228
"matchFiles": [
22182229
"^tools/gvisor/manifest.yaml$"
@@ -7804,6 +7815,17 @@
78047815
"version: \"?(?<currentValue>.*?)\"?\\n"
78057816
]
78067817
},
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+
},
78077829
{
78087830
"datasourceTemplate": "github-tags",
78097831
"depNameTemplate": "google/gvisor",

tools/guac/Dockerfile.template

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,13 @@ ENV CGO_ENABLED=0
1818
RUN <<EOF
1919
git clone -q --config advice.detachedHead=false --depth 1 --branch "${version}" https://github.com/guacsec/guac .
2020
make build
21-
cp bin/guacone "${prefix}${target}/bin/"
21+
cp bin/guac* "${prefix}${target}/bin/"
2222
EOF
2323
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+
2428
"${prefix}${target}/bin/guacone" completion bash >"${prefix}${target}/share/bash-completion/completions/guacone"
2529
"${prefix}${target}/bin/guacone" completion fish >"${prefix}${target}/share/fish/vendor_completions.d/guacone.fish"
2630
"${prefix}${target}/bin/guacone" completion zsh >"${prefix}${target}/share/zsh/vendor-completions/_guacone"

tools/guac/manifest.yaml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
name: guac
2-
version: "main"
2+
version: "0.1.0"
33
check: "" # No version parameter
44
build_dependencies:
5-
- go
5+
- go
66
tags:
7-
- category/security
8-
- type/cli
9-
- lang/go
7+
- category/security
8+
- type/cli
9+
- lang/go
1010
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

0 commit comments

Comments
 (0)