Skip to content

Commit

Permalink
Go 1.17.2 Upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
sebrandon1 committed Oct 20, 2021
1 parent d134e21 commit 4b4a794
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.16
- name: Set up Go 1.17
uses: actions/setup-go@v2
with:
go-version: ^1.16
go-version: 1.17.2

- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.16
- name: Set up Go 1.17
uses: actions/setup-go@v2
with:
go-version: ^1.16
go-version: 1.17.2

- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ At a minimum, the following dependencies must be installed to work with the GoLa

Dependency|Minimum Version
---|---
[GoLang](https://golang.org/dl/)|1.16
[GoLang](https://golang.org/dl/)|1.17
[golangci-lint](https://golangci-lint.run/usage/install/)|1.42.1

## Modifying the claim schema
Expand Down
8 changes: 7 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
module github.com/test-network-function/test-network-function-claim

go 1.16
go 1.17

require (
github.com/a-h/generate v0.0.0-20190312091541-e59c34d33fb3
github.com/stretchr/testify v1.7.0
)

require (
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)

0 comments on commit 4b4a794

Please sign in to comment.