Skip to content

Commit 79c2f88

Browse files
authored
Merge pull request #43 from pfnet-research/go-1.16
upgrade Go 1.16
2 parents 80f489e + 7a98b30 commit 79c2f88

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Go 1.x
1919
uses: actions/setup-go@v2
2020
with:
21-
go-version: ^1.14
21+
go-version: ^1.16
2222
id: go
2323
- name: Check out code into the Go module directory
2424
uses: actions/checkout@v2
@@ -50,7 +50,7 @@ jobs:
5050
- name: Set up Go 1.x
5151
uses: actions/setup-go@v2
5252
with:
53-
go-version: ^1.14
53+
go-version: ^1.16
5454
id: go
5555
- name: Check out
5656
uses: actions/checkout@v2

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Go 1.x
1818
uses: actions/setup-go@v2
1919
with:
20-
go-version: ^1.14
20+
go-version: ^1.16
2121
id: go
2222
- name: Check out
2323
uses: actions/checkout@v2
@@ -42,7 +42,7 @@ jobs:
4242
- name: Set up Go 1.x
4343
uses: actions/setup-go@v2
4444
with:
45-
go-version: ^1.14
45+
go-version: ^1.16
4646
id: go
4747
- name: Check out
4848
uses: actions/checkout@v2

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.14 as builder
1+
FROM golang:1.16 as builder
22
ARG RELEASE
33
ARG VERSION
44
WORKDIR /workspace

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/pfnet-research/pftaskqueue
22

3-
go 1.14
3+
go 1.16
44

55
require (
66
github.com/MakeNowJust/heredoc/v2 v2.0.1

0 commit comments

Comments
 (0)