-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update go and rules_go version (#55)
older versions of Go suffer from issues with DNS resolution when cross-compiling. the root of the issue is that Go <1.20 uses a built-in DNS resolver which doesn't know how to resolve addresses when connected to any VPN, like AppGate. because of this, rules like `oci_push` cannot push images to GovCloud registry, making it more difficult to do things like deploy from a laptop in the event of an incident. this DNS issue was fixed in 1.20 (see [this article](https://danp.net/posts/macos-dns-change-in-go-1-20/)) for more information.
- Loading branch information
1 parent
013ffef
commit 707e411
Showing
3 changed files
with
6 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
5.2.0 | ||
5.4.0 |
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,3 +1,3 @@ | ||
module github.com/DataDog/rules_oci | ||
|
||
go 1.18 | ||
go 1.20 |