Skip to content

Commit

Permalink
chore: update go version to 1.16 (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
KellyMerrick committed Aug 6, 2021
1 parent 0eaf609 commit dc6c041
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
release:
runs-on: ubuntu-latest
container:
image: golang:1.15
image: golang:1.16
steps:
- name: clone
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
diff-review:
runs-on: ubuntu-latest
container:
image: golang:1.15
image: golang:1.16
steps:
- name: clone
uses: actions/checkout@v2
Expand All @@ -27,7 +27,7 @@ jobs:
full-review:
runs-on: ubuntu-latest
container:
image: golang:1.15
image: golang:1.16
steps:
- name: clone
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
schema:
runs-on: ubuntu-latest
container:
image: golang:1.15
image: golang:1.16
steps:
- name: clone
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
test:
runs-on: ubuntu-latest
container:
image: golang:1.15
image: golang:1.16
steps:
- name: clone
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
validate:
runs-on: ubuntu-latest
container:
image: golang:1.15
image: golang:1.16
steps:
- name: clone
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/go-vela/types

go 1.15
go 1.16

require (
github.com/buildkite/yaml v0.0.0-20181016232759-0caa5f0796e3
Expand Down
2 changes: 1 addition & 1 deletion version/metadata_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func TestVersion_Metadata_String(t *testing.T) {
BuildDate: "1970-1-1T00:00:00Z",
Compiler: "gc",
GitCommit: "abcdef123456789",
GoVersion: "1.15.0",
GoVersion: "1.16.0",
OperatingSystem: "llinux",
}

Expand Down
6 changes: 3 additions & 3 deletions version/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func TestVersion_Version_Meta(t *testing.T) {
BuildDate: "1970-1-1T00:00:00Z",
Compiler: "gc",
GitCommit: "abcdef123456789",
GoVersion: "1.15.0",
GoVersion: "1.16.0",
OperatingSystem: "llinux",
},
}
Expand Down Expand Up @@ -51,7 +51,7 @@ func TestVersion_Version_Semantic(t *testing.T) {
BuildDate: "1970-1-1T00:00:00Z",
Compiler: "gc",
GitCommit: "abcdef123456789",
GoVersion: "1.15.0",
GoVersion: "1.16.0",
OperatingSystem: "llinux",
},
}
Expand Down Expand Up @@ -79,7 +79,7 @@ func TestVersion_Version_String(t *testing.T) {
BuildDate: "1970-1-1T00:00:00Z",
Compiler: "gc",
GitCommit: "abcdef123456789",
GoVersion: "1.15.0",
GoVersion: "1.16.0",
OperatingSystem: "llinux",
},
}
Expand Down

0 comments on commit dc6c041

Please sign in to comment.