Skip to content

Commit 16ef8a0

Browse files
authored
Merge pull request #1808 from andyzhangx/upgrade-azcopy-10.28.0
chore: upgrade azcopy to v10.28.0
2 parents 94a70ca + c6cc804 commit 16ef8a0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Diff for: .github/workflows/trivy.yaml

+1-1
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@v5
1414
with:
15-
go-version: 1.23.1
15+
go-version: 1.23.5
1616
id: go
1717

1818
- name: Checkout code

Diff for: .trivyignore

+2-2
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

Diff for: pkg/blobplugin/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN if [ "$ARCH" = "arm64" ]; then \
3232
fi
3333

3434
# install azcopy
35-
RUN curl -Ls https://azcopyvnext-awgzd8g7aagqhzhe.b02.azurefd.net/releases/release-10.27.1-20241113/azcopy_linux_${ARCH}_10.27.1.tar.gz \
35+
RUN curl -Ls https://azcopyvnext-awgzd8g7aagqhzhe.b02.azurefd.net/releases/release-10.28.0-20250127/azcopy_linux_${ARCH}_10.28.0.tar.gz \
3636
| tar xvzf - --strip-components=1 -C /usr/local/bin/ --wildcards "*/azcopy"
3737

3838
# download blobfuse deb

Diff for: test/sanity/run-test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ azcopyPath="/usr/local/bin/azcopy"
3636
if [ ! -f "$azcopyPath" ]; then
3737
azcopyTarFile="azcopy.tar.gz"
3838
echo 'Downloading azcopy...'
39-
wget -O $azcopyTarFile azcopyvnext-awgzd8g7aagqhzhe.b02.azurefd.net/releases/release-10.27.1-20241113/azcopy_linux_amd64_10.27.1.tar.gz
39+
wget -O $azcopyTarFile azcopyvnext-awgzd8g7aagqhzhe.b02.azurefd.net/releases/release-10.28.0-20250127/azcopy_linux_amd64_10.28.0.tar.gz
4040
tar -zxvf $azcopyTarFile
4141
mv ./azcopy*/azcopy /usr/local/bin/azcopy
4242
rm -rf ./$azcopyTarFile

0 commit comments

Comments
 (0)