Skip to content

Commit

Permalink
Fix go version in GitHub actions
Browse files Browse the repository at this point in the history
The go version in go.mod has been updated to 1.21 but the previous commit did not update the GitHub actions to use this version of go during builds.

Updated the go.yml and tag.yml actions to use go 1.21.
  • Loading branch information
ionthegeek committed Dec 11, 2024
1 parent a28576a commit 702c51f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.19
go-version: 1.21
cache-dependency-path: "**/go.sum"

- name: Build promdump
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag.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
cache-dependency-path: "**/go.sum"

- name: Build promdump
Expand Down

0 comments on commit 702c51f

Please sign in to comment.