Skip to content

Commit

Permalink
update go version on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Jun 13, 2024
1 parent 35cd26f commit 55b1027
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.22', '1.19' ]
steps:

- name: Check out code into the Go module directory
Expand All @@ -19,7 +22,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ^1.19
go-version: ${{ matrix.go }}

- name: use cache
uses: actions/cache@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ^1.19
go-version: ^1.21
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
Expand Down

0 comments on commit 55b1027

Please sign in to comment.