Skip to content

Commit

Permalink
ci: Use latest version of Go (#199)
Browse files Browse the repository at this point in the history
Signed-off-by: Thane Thomson <connect@thanethomson.com>
  • Loading branch information
thanethomson committed Aug 8, 2023
1 parent f17247b commit 5bb00a6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/govulncheck.yml
Expand Up @@ -17,7 +17,8 @@ jobs:
steps:
- uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: ">=1.20"
check-latest: true
- uses: actions/checkout@v3
- uses: technote-space/get-diff-action@v6
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Expand Up @@ -16,7 +16,8 @@ jobs:

- uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: '>=1.20'
check-latest: true

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Expand Up @@ -12,7 +12,8 @@ jobs:
- uses: actions/checkout@v3.2.0
- uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: ">=1.20"
check-latest: true
- run: make integration-test
- uses: codecov/codecov-action@v3.1.4
with:
Expand Down

0 comments on commit 5bb00a6

Please sign in to comment.