Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit 4d72bdd

Browse files
Upgrade golang to 1.17.7
1 parent 3874cbd commit 4d72bdd

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

.azure-pipelines/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ variables:
1919
GOBIN: '$(GOPATH)/bin'
2020
SANIC_NO_UVLOOP: 'true'
2121
TEST_SERVICES_DIR: '$(Build.SourcesDirectory)\test-services'
22-
GOVERSION: "1.17.6"
22+
GOVERSION: "1.17.7"
2323
GOMOD_HASH: ""
2424
GOSUM_HASH: ""
2525

.azure-pipelines/templates/install-go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
parameters:
22
packages: ''
3-
version: '1.17.6'
3+
version: '1.17.7'
44

55
steps:
66
- task: GoTool@0

.github/workflows/docs_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111
cancel-in-progress: true
1212

1313
env:
14-
GO_VERSION: 1.17.6
14+
GO_VERSION: 1.17.7
1515

1616
jobs:
1717
docs_test:

.github/workflows/gotests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ concurrency:
1212

1313
env:
1414
RESULT_PATH: "~/testresults"
15-
GO_VERSION: 1.17.6
15+
GO_VERSION: 1.17.7
1616

1717
jobs:
1818
gotests:

.github/workflows/modules_and_generate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111
cancel-in-progress: true
1212

1313
env:
14-
GO_VERSION: 1.17.6
14+
GO_VERSION: 1.17.7
1515

1616
jobs:
1717
modules_and_generate:

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ win-bundle-build:
5050
GOOS: "windows"
5151
GO111MODULE: "on"
5252
before_script:
53-
- choco upgrade -y golang --version 1.17.6
53+
- choco upgrade -y golang --version 1.17.7
5454
- choco upgrade -y git --version 2.33.0.2
5555
- refreshenv
5656
script:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_VERSION=1.17.6
1+
ARG GO_VERSION=1.17.7
22
ARG PIP_VERSION=21.0.1
33

44
###### Agent Build Image ########

deployments/splunk/tracing/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.17.6-stretch
1+
FROM golang:1.17.7-stretch
22

33
WORKDIR /go/src/app
44

scripts/windows/vagrant/common/3_golang.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# TODO: centralize these
2-
$goVersion = "1.17.6"
2+
$goVersion = "1.17.7"
33

44
# ensure choco in path
55
$env:Path = [Environment]::GetEnvironmentVariable('Path',[System.EnvironmentVariableTarget]::Machine);

test-services/expvar/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.17.6-alpine
1+
FROM golang:1.17.7-alpine
22

33
CMD ["./expvar"]
44
EXPOSE 8080

0 commit comments

Comments
 (0)