We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4368bb commit 96ba802Copy full SHA for 96ba802
1 file changed
Jenkinsfile
@@ -725,6 +725,7 @@ pipeline {
725
sh '''#! /bin/bash
726
set -e
727
TEMPDIR=$(mktemp -d)
728
+ chown 65532:65532 "${TEMPDIR}"
729
if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" != "true" ]; then
730
LOCAL_CONTAINER=${IMAGE}:amd64-${META_TAG}
731
else
@@ -734,7 +735,7 @@ pipeline {
734
735
docker run --rm \
736
-v /var/run/docker.sock:/var/run/docker.sock:ro \
737
-v ${TEMPDIR}:/tmp \
- ghcr.io/anchore/syft:v1.26.1 \
738
+ ghcr.io/anchore/syft:latest \
739
${LOCAL_CONTAINER} -o table=/tmp/package_versions.txt
740
NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 )
741
echo "Package tag sha from current packages in buit container is ${NEW_PACKAGE_TAG} comparing to old ${PACKAGE_TAG} from github"
0 commit comments