Skip to content

Commit 4a45c53

Browse files
authored
Merge pull request #2363 from kubernetes-sigs/upgrade-azcopy-10.28.0-1.29
[release-1.29] chore: upgrade azcopy to v10.28.0
2 parents f1c9aca + 9676b03 commit 4a45c53

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/trivy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Go 1.x
1313
uses: actions/setup-go@v4
1414
with:
15-
go-version: 1.23.1
15+
go-version: 1.23.5
1616
id: go
1717

1818
- name: Checkout code

.trivyignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
CVE-2024-45337
2-
CVE-2024-45338
1+
CVE-2024-45336
2+
CVE-2024-45341

pkg/azurefileplugin/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ARG ARCH
2222

2323
RUN apt update \
2424
&& apt install -y curl \
25-
&& curl -Ls https://azcopyvnext-awgzd8g7aagqhzhe.b02.azurefd.net/releases/release-10.27.1-20241113/azcopy_linux_${ARCH}_10.27.1.tar.gz \
25+
&& curl -Ls https://azcopyvnext-awgzd8g7aagqhzhe.b02.azurefd.net/releases/release-10.28.0-20250127/azcopy_linux_${ARCH}_10.28.0.tar.gz \
2626
| tar xvzf - --strip-components=1 -C /usr/local/bin/ --wildcards "*/azcopy"
2727

2828
FROM base

test/sanity/run-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ azcopyPath="/usr/local/bin/azcopy"
4040
if [ ! -f "$azcopyPath" ]; then
4141
echo 'Downloading azcopy...'
4242
azcopyTarFile="azcopy.tar.gz"
43-
wget -O $azcopyTarFile azcopyvnext-awgzd8g7aagqhzhe.b02.azurefd.net/releases/release-10.27.1-20241113/azcopy_linux_amd64_10.27.1.tar.gz
43+
wget -O $azcopyTarFile azcopyvnext-awgzd8g7aagqhzhe.b02.azurefd.net/releases/release-10.28.0-20250127/azcopy_linux_amd64_10.28.0.tar.gz
4444
tar -zxvf $azcopyTarFile
4545
mv ./azcopy*/azcopy /usr/local/bin/azcopy
4646
rm -rf ./$azcopyTarFile

0 commit comments

Comments
 (0)