Skip to content

Commit

Permalink
Upgrade golang to 1.18.2 (#1551)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreyc-splunk authored May 19, 2022
1 parent 1af46fb commit a225150
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:
PIP_VERSION: '22.0.4'
REQUIREMENTS_PATH: "internal/buildscripts/packaging/tests/requirements.txt"
RESULT_PATH: "~/testresults"
GO_VERSION: 1.18.1
GO_VERSION: 1.18.2

jobs:
setup-environment:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deps-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.18.1
go-version: 1.18.2
- name: Setup Go Environment
run: |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: 1.18.1
go-version: 1.18.2
- id: module-cache
uses: actions/cache@v3
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18.1
go-version: 1.18.2

- name: Install golang dependency
run: |
Expand Down
8 changes: 4 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ whitesource:
- schedules
# allow_failure: false
cache:
key: "whitesource-go1.18.1"
key: "whitesource-go1.18.2"
paths:
- /usr/local/go
- /go/pkg/mod
Expand All @@ -58,8 +58,8 @@ whitesource:
set -e
if [ ! -d /usr/local/go ]; then
pushd /usr/local
wget https://golang.org/dl/go1.18.1.linux-amd64.tar.gz
tar xzf go1.18.1.linux-amd64.tar.gz
wget https://golang.org/dl/go1.18.2.linux-amd64.tar.gz
tar xzf go1.18.2.linux-amd64.tar.gz
popd
fi
- export GOROOT=/usr/local/go
Expand Down Expand Up @@ -91,7 +91,7 @@ whitesource:
fi
.go-cache:
image: '${DOCKER_HUB_REPO}/golang:1.18.1'
image: '${DOCKER_HUB_REPO}/golang:1.18.2'
variables:
GOPATH: "$CI_PROJECT_DIR/.go"
before_script:
Expand Down
2 changes: 1 addition & 1 deletion examples/splunk-hec-traces/tracing/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18.1-stretch
FROM golang:1.18.2-stretch

WORKDIR /go/src/app

Expand Down

0 comments on commit a225150

Please sign in to comment.