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

Commit

Permalink
Upgrade golang to 1.17.7 (#2116)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreyc-splunk authored Feb 25, 2022
1 parent 3874cbd commit 0e137fe
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .azure-pipelines/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ variables:
GOBIN: '$(GOPATH)/bin'
SANIC_NO_UVLOOP: 'true'
TEST_SERVICES_DIR: '$(Build.SourcesDirectory)\test-services'
GOVERSION: "1.17.6"
GOVERSION: "1.17.7"
GOMOD_HASH: ""
GOSUM_HASH: ""

Expand Down
2 changes: 1 addition & 1 deletion .azure-pipelines/templates/install-go.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
parameters:
packages: ''
version: '1.17.6'
version: '1.17.7'

steps:
- task: GoTool@0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:
cancel-in-progress: true

env:
GO_VERSION: 1.17.6
GO_VERSION: 1.17.7

jobs:
docs_test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gotests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:

env:
RESULT_PATH: "~/testresults"
GO_VERSION: 1.17.6
GO_VERSION: 1.17.7

jobs:
gotests:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/modules_and_generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:
cancel-in-progress: true

env:
GO_VERSION: 1.17.6
GO_VERSION: 1.17.7

jobs:
modules_and_generate:
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ win-bundle-build:
GOOS: "windows"
GO111MODULE: "on"
before_script:
- choco upgrade -y golang --version 1.17.6
- choco upgrade -y golang --version 1.17.7
- choco upgrade -y git --version 2.33.0.2
- refreshenv
script:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG GO_VERSION=1.17.6
ARG GO_VERSION=1.17.7
ARG PIP_VERSION=21.0.1

###### Agent Build Image ########
Expand Down
2 changes: 1 addition & 1 deletion deployments/splunk/tracing/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.17.6-stretch
FROM golang:1.17.7-stretch

WORKDIR /go/src/app

Expand Down
2 changes: 1 addition & 1 deletion scripts/windows/vagrant/common/3_golang.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# TODO: centralize these
$goVersion = "1.17.6"
$goVersion = "1.17.7"

# ensure choco in path
$env:Path = [Environment]::GetEnvironmentVariable('Path',[System.EnvironmentVariableTarget]::Machine);
Expand Down
2 changes: 1 addition & 1 deletion test-services/expvar/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.17.6-alpine
FROM golang:1.17-alpine

CMD ["./expvar"]
EXPOSE 8080
Expand Down
2 changes: 1 addition & 1 deletion test-services/fakek8s/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.17.6-alpine
FROM golang:1.17-alpine

CMD ["./fakek8s", "-httptest.serve=0.0.0.0:8443"]
EXPOSE 8443
Expand Down

0 comments on commit 0e137fe

Please sign in to comment.