Skip to content

Commit

Permalink
Update Go versions
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksrutins authored Dec 3, 2023
1 parent 61f497b commit 37a0218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/go.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use anyhow::Result;
pub struct GolangProvider {}

const BINARY_NAME: &str = "out";
const AVAILABLE_GO_VERSIONS: &[(&str, &str)] = &[("1.17", "go"), ("1.18", "go_1_18")];
const AVAILABLE_GO_VERSIONS: &[(&str, &str)] = &[("1.18", "go_1_18"), ("1.19", "go_1_19"), ("1.20", "go_1_20"), ("1.21", "go")];
const DEFAULT_GO_PKG_NAME: &str = "go";

const GO_BUILD_CACHE_DIR: &str = "/root/.cache/go-build";
Expand Down

0 comments on commit 37a0218

Please sign in to comment.