diff --git a/.trivyignore b/.trivyignore index 5a656f1c25..07f017324e 100644 --- a/.trivyignore +++ b/.trivyignore @@ -1,18 +1 @@ CVE-2024-3744 -CVE-2026-34986 -CVE-2026-39883 -CVE-2026-32280 -CVE-2026-32281 -CVE-2026-32282 -CVE-2026-32283 -CVE-2026-32288 -CVE-2026-32289 -CVE-2026-29181 -CVE-2026-33811 -CVE-2026-33814 -CVE-2026-39820 -CVE-2026-39823 -CVE-2026-39825 -CVE-2026-39826 -CVE-2026-39836 -CVE-2026-42499 diff --git a/pkg/azurefileplugin/Dockerfile b/pkg/azurefileplugin/Dockerfile index a6c85b2794..09038e1cd3 100644 --- a/pkg/azurefileplugin/Dockerfile +++ b/pkg/azurefileplugin/Dockerfile @@ -23,7 +23,7 @@ ARG ARCH RUN apt update \ && apt install -y curl \ && curl -Lso /tmp/packages-microsoft-prod-22.04.deb https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb \ - && curl -Ls https://github.com/Azure/azure-storage-azcopy/releases/download/v10.32.3/azcopy_linux_${ARCH}_10.32.3.tar.gz \ + && curl -Ls https://github.com/Azure/azure-storage-azcopy/releases/download/v10.32.4/azcopy_linux_${ARCH}_10.32.4.tar.gz \ | tar xvzf - --strip-components=1 -C /usr/local/bin/ --wildcards "*/azcopy" FROM base diff --git a/test/sanity/run-test.sh b/test/sanity/run-test.sh index e7cf067dc6..03bd99911a 100755 --- a/test/sanity/run-test.sh +++ b/test/sanity/run-test.sh @@ -40,7 +40,7 @@ azcopyPath="/usr/local/bin/azcopy" if [ ! -f "$azcopyPath" ]; then azcopyTarFile="azcopy.tar.gz" echo 'Downloading azcopy...' - wget -O $azcopyTarFile https://github.com/Azure/azure-storage-azcopy/releases/download/v10.32.3/azcopy_linux_amd64_10.32.3.tar.gz + wget -O $azcopyTarFile https://github.com/Azure/azure-storage-azcopy/releases/download/v10.32.4/azcopy_linux_amd64_10.32.4.tar.gz tar -zxvf $azcopyTarFile mv ./azcopy*/azcopy /usr/local/bin/azcopy rm -rf ./$azcopyTarFile