Skip to content

Commit

Permalink
Updated Go to 1.22.4 (#362)
Browse files Browse the repository at this point in the history
1.22.4 will now be installed by default.
  • Loading branch information
utamas authored Jul 7, 2024
1 parent bf506a4 commit 2507b08
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ are shown below):

```yaml
# Go language SDK version number
golang_version: '1.22.3'
golang_version: '1.22.4'

# Mirror to download the Go language SDK redistributable package from
golang_mirror: 'https://storage.googleapis.com/golang'
Expand All @@ -75,6 +75,7 @@ The following versions of Go language SDK are supported without any additional
configuration (for other versions follow the Advanced Configuration
instructions):
* `1.22.4`
* `1.22.3`
* `1.22.2`
* `1.22.1`
Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# code: language=ansible
---
# Go language SDK version number
golang_version: '1.22.3'
golang_version: '1.22.4'

# Mirror to download the Go language SDK redistributable package from
golang_mirror: 'https://storage.googleapis.com/golang'
Expand Down
4 changes: 2 additions & 2 deletions molecule/default/tests/test_role.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@


@pytest.mark.parametrize('name,pattern', [
('GOROOT', '^/opt/go/1.22.3$'),
('GOROOT', '^/opt/go/1.22.4$'),
('GOPATH', '^/root/workspace-go$'),
('PATH', '^(.+:)?/opt/go/1.22.3/bin(:.+)?$'),
('PATH', '^(.+:)?/opt/go/1.22.4/bin(:.+)?$'),
('PATH', '^(.+:)?/root/workspace-go/bin(:.+)?$')
])
def test_go_env(host, name, pattern):
Expand Down
3 changes: 3 additions & 0 deletions vars/versions/1.22.4-arm64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
# SHA256 sum for the redistributable package
golang_redis_sha256sum: 'a8e177c354d2e4a1b61020aca3562e27ea3e8f8247eca3170e3fa1e0c2f9e771'
3 changes: 3 additions & 0 deletions vars/versions/1.22.4-armv6l.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
# SHA256 sum for the redistributable package
golang_redis_sha256sum: 'e2b143fbacbc9cbd448e9ef41ac3981f0488ce849af1cf37e2341d09670661de'
3 changes: 3 additions & 0 deletions vars/versions/1.22.4.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
# SHA256 sum for the redistributable package
golang_redis_sha256sum: 'ba79d4526102575196273416239cca418a651e049c2b099f3159db85e7bade7d'

0 comments on commit 2507b08

Please sign in to comment.