Skip to content

Commit f748c32

Browse files
committed
feat: upgrade to stable Go 1.16
1 parent 2eddc71 commit f748c32

File tree

7 files changed

+5
-17
lines changed

7 files changed

+5
-17
lines changed

.github/workflows/goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Go
1616
uses: actions/setup-go@v2
1717
with:
18-
go-version: "1.16.0-rc1"
18+
go-version: "1.16"
1919
stable: false
2020

2121
- name: Set up Node

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Go
1515
uses: actions/setup-go@v2
1616
with:
17-
go-version: "1.16.0-rc1"
17+
go-version: "1.16"
1818
stable: false
1919

2020
- uses: actions/checkout@v2

.github/workflows/test-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Go
1717
uses: actions/setup-go@v2
1818
with:
19-
go-version: "1.16.0-rc1"
19+
go-version: "1.16"
2020
stable: false
2121

2222
- name: Set up Node

.github/workflows/test-integration.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,9 @@ jobs:
1717
- name: Set up Go
1818
uses: actions/setup-go@v2
1919
with:
20-
go-version: "1.16.0-rc1"
20+
go-version: "1.16"
2121
stable: false
2222

23-
- name: "Get Go 1.15"
24-
run: |
25-
go get golang.org/dl/go1.15
26-
go1.15 download
27-
2823
- name: Install protoc
2924
uses: arduino/setup-protoc@v1
3025

@@ -57,5 +52,3 @@ jobs:
5752
- name: Run Integration Tests
5853
working-directory: ${{ env.working-directory }}
5954
run: ./scripts/test-integration
60-
env:
61-
GONAME: "go1.15"

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
- uses: actions/checkout@v2
1515
- uses: actions/setup-go@v2
1616
with:
17-
go-version: "1.16.0-rc1"
17+
go-version: "1.16"
1818
stable: false
1919
- run: ./scripts/test-unit

.gitpod.Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,4 @@ RUN wget https://golang.org/dl/go1.16rc1.linux-amd64.tar.gz && \
55
tar -C $HOME -xzf go1.16rc1.linux-amd64.tar.gz && \
66
rm go1.16rc1.linux-amd64.tar.gz
77

8-
ENV GONAME go1.15
9-
108
RUN brew install gh protobuf

.gitpod.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ workspaceLocation: "./starport/docs"
77

88
tasks:
99
- name: Install Starport
10-
before: |
11-
go get golang.org/dl/go1.15
12-
go1.15 download
1310

1411
init: |
1512
# Install Starport

0 commit comments

Comments
 (0)