Skip to content

Commit

Permalink
Make Golang version in go.mod file explicit (#119)
Browse files Browse the repository at this point in the history
As per Golang 1.22, go.mod must use the 1.N.P notation. CodeQL is barking at us for not using it currently.
  • Loading branch information
markusthoemmes authored Jul 30, 2024
1 parent 3014de4 commit 5ba86f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
- main
- go_attempt
env:
GO_VERSION_TO_USE: '^1.22.0' # The Go version to download (if necessary) and use.
GO_VERSION_TO_USE: '1.22.5' # The Go version to download (if necessary) and use.
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# The "build" workflow
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/digitalocean/app_action

go 1.22
go 1.22.5

require (
github.com/digitalocean/godo v1.119.0
Expand Down

0 comments on commit 5ba86f9

Please sign in to comment.