diff --git a/.trivyignore b/.trivyignore index 5c53f977d..8d8fb8c0c 100644 --- a/.trivyignore +++ b/.trivyignore @@ -1,4 +1 @@ -CVE-2025-22874 -CVE-2025-4673 -CVE-2025-0913 CVE-2025-47907 diff --git a/pkg/blobplugin/Dockerfile b/pkg/blobplugin/Dockerfile index 94a88576f..e77015d64 100644 --- a/pkg/blobplugin/Dockerfile +++ b/pkg/blobplugin/Dockerfile @@ -32,7 +32,7 @@ RUN if [ "$ARCH" = "arm64" ]; then \ fi # install azcopy -RUN curl -Ls https://azcopyvnext-awgzd8g7aagqhzhe.b02.azurefd.net/releases/release-10.29.1-20250515/azcopy_linux_${ARCH}_10.29.1.tar.gz \ +RUN curl -Ls https://github.com/Azure/azure-storage-azcopy/releases/download/v10.30.0/azcopy_linux_${ARCH}_10.30.0.tar.gz \ | tar xvzf - --strip-components=1 -C /usr/local/bin/ --wildcards "*/azcopy" # download blobfuse deb diff --git a/test/sanity/run-test.sh b/test/sanity/run-test.sh index ea288e7cf..4c5b3fafb 100755 --- a/test/sanity/run-test.sh +++ b/test/sanity/run-test.sh @@ -36,7 +36,7 @@ azcopyPath="/usr/local/bin/azcopy" if [ ! -f "$azcopyPath" ]; then azcopyTarFile="azcopy.tar.gz" echo 'Downloading azcopy...' - wget -O $azcopyTarFile azcopyvnext-awgzd8g7aagqhzhe.b02.azurefd.net/releases/release-10.29.1-20250515/azcopy_linux_amd64_10.29.1.tar.gz + wget -O $azcopyTarFile https://github.com/Azure/azure-storage-azcopy/releases/download/v10.30.0/azcopy_linux_amd64_10.30.0.tar.gz tar -zxvf $azcopyTarFile mv ./azcopy*/azcopy /usr/local/bin/azcopy rm -rf ./$azcopyTarFile