diff --git a/Windows.Dockerfile b/Windows.Dockerfile index e941ef69..42862258 100644 --- a/Windows.Dockerfile +++ b/Windows.Dockerfile @@ -18,7 +18,7 @@ RUN $newPath = ('{0}\bin;C:\go\bin;{1}' -f $env:GOPATH, $env:PATH); \ # ideally we should be able to use FROM golang:windowsservercore-1803. This is not done due to two reasons # 1. The go lang for 1803 tag is not available. -ENV GOLANG_VERSION 1.24.5 +ENV GOLANG_VERSION 1.24.6 RUN $url = ('https://golang.org/dl/go{0}.windows-amd64.zip' -f $env:GOLANG_VERSION); \ Write-Host ('Downloading {0} ...' -f $url); \ diff --git a/azure-pipelines-windows.yml b/azure-pipelines-windows.yml index 675df644..13ff1fd0 100644 --- a/azure-pipelines-windows.yml +++ b/azure-pipelines-windows.yml @@ -15,7 +15,7 @@ steps: - task: GoTool@0 inputs: - version: '1.24.5' + version: '1.24.6' - script: | (robocopy $(system.defaultWorkingDirectory) $(ModulePath) /E /XD $(system.defaultWorkingDirectory)\work)^& IF %ERRORLEVEL% LSS 8 SET ERRORLEVEL = 0 diff --git a/azure-pipelines.yml b/azure-pipelines.yml index eef68bce..352881a1 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -15,7 +15,7 @@ steps: - task: GoTool@0 inputs: - version: '1.24.5' + version: '1.24.6' - script: | set -e diff --git a/go.mod b/go.mod index 95bf1845..f37d68b8 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/Azure/acr-cli -go 1.24.5 +go 1.24.6 require ( github.com/Azure/go-autorest/autorest v0.11.30