Skip to content

Commit

Permalink
Update Go versions used by the CI (#2183)
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez committed Aug 17, 2021
1 parent b9408a3 commit aff4fc0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/post-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16
go-version: 1.17

- name: Update GitHub action config
run: make assets/github-action-config.json
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16
go-version: 1.17
- name: Checkout code
uses: actions/checkout@v2
- name: Check go mod
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16 # test only the latest go version to speed up CI
go-version: 1.17 # test only the latest go version to speed up CI
- name: Run tests
run: make.exe test
continue-on-error: true
Expand All @@ -57,7 +57,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16 # test only the latest go version to speed up CI
go-version: 1.17 # test only the latest go version to speed up CI
- name: Run tests
run: make test
tests-on-unix:
Expand All @@ -68,6 +68,7 @@ jobs:
golang:
- 1.15
- 1.16
- 1.17
steps:
- uses: actions/checkout@v2
- name: Install Go
Expand Down Expand Up @@ -95,6 +96,6 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16
go-version: 1.17
- name: Check generated files are up to date
run: make fast_check_generated
4 changes: 2 additions & 2 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16
go-version: 1.17
- name: Unshallow
run: git fetch --prune --unshallow

Expand All @@ -40,7 +40,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16
go-version: 1.17

- name: Unshallow
run: git fetch --prune --unshallow
Expand Down

0 comments on commit aff4fc0

Please sign in to comment.