Skip to content

Commit

Permalink
chore(ci): update Go version across workflow and dependencies
Browse files Browse the repository at this point in the history
- Update Go version in the workflow configuration from 1.20 to 1.21
- Change the list of Go versions in the workflow from 1.13-1.20 to 1.21-1.23
- Modify the go.mod file to reflect the updated Go version from 1.20 to 1.21

Signed-off-by: appleboy <[email protected]>
  • Loading branch information
appleboy committed Oct 23, 2024
1 parent 82be6d0 commit a4c6f80
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup go
uses: actions/setup-go@v3
with:
go-version: '^1'
go-version: "^1"
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup golangci-lint
Expand All @@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
go: [1.13, 1.14, 1.15, 1.16, 1.17, 1.18, 1.19, '1.20']
go: [1.21, 1.22, 1.23]
include:
- os: ubuntu-latest
go-build: ~/.cache/go-build
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/appleboy/com

go 1.20
go 1.21

0 comments on commit a4c6f80

Please sign in to comment.