From 71a9276eea97bb55640d17db24722d0a82b6ad82 Mon Sep 17 00:00:00 2001 From: andyzhangx Date: Thu, 27 Mar 2025 02:54:34 +0000 Subject: [PATCH] chore: upgrade azcopy to v10.28.1 --- .trivyignore | 5 ----- pkg/blobplugin/Dockerfile | 2 +- test/sanity/run-test.sh | 2 +- 3 files changed, 2 insertions(+), 7 deletions(-) delete mode 100644 .trivyignore diff --git a/.trivyignore b/.trivyignore deleted file mode 100644 index aa45a3e7d..000000000 --- a/.trivyignore +++ /dev/null @@ -1,5 +0,0 @@ -CVE-2024-45336 -CVE-2024-45341 -CVE-2025-22866 -CVE-2025-22870 -CVE-2025-30204 diff --git a/pkg/blobplugin/Dockerfile b/pkg/blobplugin/Dockerfile index 285dfeacb..d58c2e603 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.28.0-20250127/azcopy_linux_${ARCH}_10.28.0.tar.gz \ +RUN curl -Ls https://azcopyvnext-awgzd8g7aagqhzhe.b02.azurefd.net/releases/release-10.28.1-20250326/azcopy_linux_${ARCH}_10.28.1.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 2fb9ad986..e01b6af37 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.28.0-20250127/azcopy_linux_amd64_10.28.0.tar.gz + wget -O $azcopyTarFile azcopyvnext-awgzd8g7aagqhzhe.b02.azurefd.net/releases/release-10.28.1-20250326/azcopy_linux_amd64_10.28.1.tar.gz tar -zxvf $azcopyTarFile mv ./azcopy*/azcopy /usr/local/bin/azcopy rm -rf ./$azcopyTarFile