You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ki...@apache.org on 2022/04/18 19:01:00 UTC

[trafficserver-ingress-controller] branch master updated: Upgrade to go 1.17.9 (#112)

This is an automated email from the ASF dual-hosted git repository.

kichan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver-ingress-controller.git


The following commit(s) were added to refs/heads/master by this push:
     new d372425  Upgrade to go 1.17.9 (#112)
d372425 is described below

commit d372425c3fceb4b00d896407336d87f7a72a0fbf
Author: Kit Chan <ki...@apache.org>
AuthorDate: Mon Apr 18 12:00:55 2022 -0700

    Upgrade to go 1.17.9 (#112)
---
 .github/workflows/test.yml | 2 +-
 Dockerfile                 | 4 ++--
 README.md                  | 2 +-
 docs/DEVELOPMENT.md        | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 25384b8..0f6eaee 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -26,7 +26,7 @@ jobs:
     - name: Set up Go 1.x
       uses: actions/setup-go@v2
       with:
-        go-version: ^1.17.8
+        go-version: ^1.17.9
       id: go
 
     - name: Check out code into the Go module directory
diff --git a/Dockerfile b/Dockerfile
index a9199c1..da20917 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -70,8 +70,8 @@ RUN apk add --no-cache --virtual .ingress-build-deps \
   bash gcc musl-dev openssl go
 
 # Installing Golang https://github.com/CentOS/CentOS-Dockerfiles/blob/master/golang/centos7/Dockerfile
-RUN wget https://dl.google.com/go/go1.17.8.src.tar.gz \
-    && tar -C /opt/ats -xzf go1.17.8.src.tar.gz && cd /opt/ats/go/src/ && ./make.bash
+RUN wget https://dl.google.com/go/go1.17.9.src.tar.gz \
+    && tar -C /opt/ats -xzf go1.17.9.src.tar.gz && cd /opt/ats/go/src/ && ./make.bash
 ENV PATH=${PATH}:/opt/ats/go/bin
 ENV GOPATH="/opt/ats/go/bin"
 
diff --git a/README.md b/README.md
index 3526238..011d56a 100644
--- a/README.md
+++ b/README.md
@@ -33,7 +33,7 @@ ATS Kubernetes Ingress Controller
 - Alpine Linux 3.14.6
 - Apache Traffic Server 9.1.2
 - LuaJIT 2.0.4
-- Go 1.17.8
+- Go 1.17.9
 - Other Packages
   - luasocket 3.0.0
   - redis-lua 2.0.4
diff --git a/docs/DEVELOPMENT.md b/docs/DEVELOPMENT.md
index dc61ca8..19b918b 100644
--- a/docs/DEVELOPMENT.md
+++ b/docs/DEVELOPMENT.md
@@ -20,7 +20,7 @@
 ## Development
 
 ### Develop with Go-Lang in Linux
-1. Get Go-lang 1.17.8 from [official site](https://golang.org/dl/)
+1. Get Go-lang 1.17.9 from [official site](https://golang.org/dl/)
 2. Add `go` command to your PATH: `export PATH=$PATH:/usr/local/go/bin`
 3. Define GOPATH: `export GOPATH=$(go env GOPATH)`
 4. Add Go workspace to your PATH: `export PATH=$PATH:$(go env GOPATH)/bin`