Skip to content

Commit

Permalink
Update Go to v1.19.5 (#779)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebrandon1 authored Jan 12, 2023
1 parent de7fa13 commit 3ac604f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Go 1.19
uses: actions/setup-go@v3
with:
go-version: 1.19.4
go-version: 1.19.5

- name: Check out code into the Go module directory
uses: actions/checkout@v3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pre-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Set up Go 1.19
uses: actions/setup-go@v3
with:
go-version: 1.19.4
go-version: 1.19.5

- name: Disable default go problem matcher
run: echo "::remove-matcher owner=go::"
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
- name: Set up Go 1.19
uses: actions/setup-go@v3
with:
go-version: 1.19.4
go-version: 1.19.5

- name: Disable default go problem matcher
run: echo "::remove-matcher owner=go::"
Expand Down Expand Up @@ -133,10 +133,10 @@ jobs:
KUBECONFIG: '/home/runner/.kube/config'

steps:
- name: Set up Go 1.19.4
- name: Set up Go 1.19.5
uses: actions/setup-go@v3
with:
go-version: 1.19.4
go-version: 1.19.5

- name: Disable default go problem matcher
run: echo "::remove-matcher owner=go::"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN yum install -y gcc make wget

# Install Go binary and set the PATH
ENV GO_DL_URL="https://golang.org/dl"
ENV GO_BIN_TAR="go1.19.4.linux-amd64.tar.gz"
ENV GO_BIN_TAR="go1.19.5.linux-amd64.tar.gz"
ENV GO_BIN_URL_x86_64=${GO_DL_URL}/${GO_BIN_TAR}
ENV GOPATH="/root/go"
RUN if [[ "$(uname -m)" -eq "x86_64" ]] ; then \
Expand Down

0 comments on commit 3ac604f

Please sign in to comment.