Skip to content

Commit

Permalink
update Go versions in CI and README
Browse files Browse the repository at this point in the history
Go 1.15 has been released on 2020-08-11. This commit
updates the Go versions in the README.md, module file
and CI configuration to Go version:
 - `Go 1.14`
 - `Go 1.15`

Go 1.13 has now reached EOL.
  • Loading branch information
Andreas Auernhammer authored and harshavardhana committed Aug 14, 2020
1 parent bc67cf9 commit 558854a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.13.x, 1.14.x]
go-version: [1.14.x, 1.15.x]
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v1
Expand All @@ -37,7 +37,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: [1.14.x]
go-version: [1.15.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Set up Go ${{ matrix.go-version }} on ${{ matrix.os }}
Expand All @@ -60,7 +60,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.14.x]
go-version: [1.15.x]
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ docker pull minio/kes
GO111MODULE=on go get github.com/minio/kes/cmd/kes
```
> You will need a working Go environment. Therefore, please follow [How to install Go](https://golang.org/doc/install).
> Minimum version required is go1.13
> Minimum version required is go1.14
## Getting Started

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/minio/kes

go 1.13
go 1.14

require (
github.com/aws/aws-sdk-go v1.26.3
Expand Down

0 comments on commit 558854a

Please sign in to comment.