Skip to content

Commit

Permalink
Update github workflows to go 1.23 (#334)
Browse files Browse the repository at this point in the history
* Update github workflows to go 1.23

* Quote string of version

* Use v5 setup-go on coverage test workflow
  • Loading branch information
optik-aper authored Oct 10, 2024
1 parent 3df9f3b commit 0de3c41
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
- uses: actions/checkout@v2

- name: Setup Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: 1.19
go-version: "1.23"

- name: Run unit tests and coverage test
id: test-coverage
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gochecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
go-version: "1.23"
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version: "1.23"

- name: Run fmt
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/releaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
go-version: "1.23"
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
Expand Down

0 comments on commit 0de3c41

Please sign in to comment.