-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Go 1.21 in `go.mod` and the Dockerfile. Additionally, introduces a `matrix` to the `go.yml` workflow so that the project gets built and tested on Go 1.21 and 1.22. We target 1.21 so we can use `log/slog` in a subsequent change. See #61 for discussion.
- Loading branch information
1 parent
954b26e
commit f608107
Showing
3 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.20-bookworm as build | ||
FROM golang:1.21-bookworm as build | ||
|
||
WORKDIR /app | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module github.com/cloudflare/app-gateway-go | ||
|
||
go 1.17 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/DataDog/datadog-go/v5 v5.1.1 | ||
|