fix(tests): use GHCR for install tests (#1461)

* fix(tests): use GHCR for install tests

* bump jackett to test ci

* also use ghcr.io for other tests

* actually process all yaml files to ghcr, not just values.yaml
This commit is contained in:
Kjeld Schouten-Lebbing
2021-12-04 11:04:24 +01:00
committed by GitHub
parent 91ccfe2631
commit 52aecf1094
5 changed files with 8 additions and 7 deletions
+2 -1
View File
@@ -319,7 +319,8 @@ container_sec_scan() {
echo "**Container: ${container}**" >> ${chart}/sec-scan.md
echo "" >> ${chart}/sec-scan.md
echo '```' >> ${chart}/sec-scan.md
trivy image ${container} >> ${chart}/sec-scan.md
ghcrcont=$(echo ${container} | sed "s/tccr.io/ghcr.io/g")
trivy image ${ghcrcont} >> ${chart}/sec-scan.md
echo '```' >> ${chart}/sec-scan.md
echo "" >> ${chart}/sec-scan.md
done