Skip to content

Commit d7918f2

Browse files
committed
Update Go version and fedora base
Signed-off-by: Phil Estes <[email protected]>
1 parent 1df7813 commit d7918f2

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install Go
2626
uses: actions/setup-go@v2
2727
with:
28-
go-version: '1.16.x'
28+
go-version: '1.17.x'
2929

3030
- name: Set env
3131
shell: bash
@@ -90,7 +90,7 @@ jobs:
9090
- name: Install Go
9191
uses: actions/setup-go@v2
9292
with:
93-
go-version: '1.16.x'
93+
go-version: '1.17.x'
9494

9595
- name: Set env
9696
shell: bash

Vagrantfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33

44
Vagrant.configure("2") do |config|
55
# Fedora box is used for testing cgroup v2 support
6-
config.vm.box = "fedora/32-cloud-base"
6+
config.vm.box = "fedora/35-cloud-base"
77
config.vm.provider :virtualbox do |v|
8-
v.memory = 2048
8+
v.memory = 4096
99
v.cpus = 2
1010
end
1111
config.vm.provider :libvirt do |v|
12-
v.memory = 2048
12+
v.memory = 4096
1313
v.cpus = 2
1414
end
1515
config.vm.provision "shell", inline: <<-SHELL
1616
set -eux -o pipefail
1717
# configuration
18-
GO_VERSION="1.15"
18+
GO_VERSION="1.17.7"
1919
2020
# install gcc and Golang
2121
dnf -y install gcc

0 commit comments

Comments
 (0)