diff --git a/.trivyignore b/.trivyignore deleted file mode 100644 index de6dfc5a2e..0000000000 --- a/.trivyignore +++ /dev/null @@ -1 +0,0 @@ -CVE-2024-51744 diff --git a/pkg/azurefileplugin/Dockerfile b/pkg/azurefileplugin/Dockerfile index 5a1df22a8f..7b5d31a2e2 100644 --- a/pkg/azurefileplugin/Dockerfile +++ b/pkg/azurefileplugin/Dockerfile @@ -22,7 +22,7 @@ ARG ARCH RUN apt update \ && apt install -y curl \ - && curl -Ls https://azcopyvnext.azureedge.net/releases/release-10.27.0-20241030/azcopy_linux_${ARCH}_10.27.0.tar.gz \ + && curl -Ls https://azcopyvnext.azureedge.net/releases/release-10.27.1-20241113/azcopy_linux_${ARCH}_10.27.1.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 7b40d8b642..fe165610f3 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 echo 'Downloading azcopy...' azcopyTarFile="azcopy.tar.gz" - wget -O $azcopyTarFile azcopyvnext.azureedge.net/releases/release-10.27.0-20241030/azcopy_linux_amd64_10.27.0.tar.gz + wget -O $azcopyTarFile azcopyvnext.azureedge.net/releases/release-10.27.1-20241113/azcopy_linux_amd64_10.27.1.tar.gz tar -zxvf $azcopyTarFile mv ./azcopy*/azcopy /usr/local/bin/azcopy rm -rf ./$azcopyTarFile