From d7918f21b96761cb4d69c7f42e3f8ce54d9a2a9a Mon Sep 17 00:00:00 2001 From: Phil Estes Date: Thu, 17 Feb 2022 14:02:20 -0500 Subject: [PATCH] Update Go version and fedora base Signed-off-by: Phil Estes --- .github/workflows/ci.yml | 4 ++-- Vagrantfile | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7382d096..deca292a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: - name: Install Go uses: actions/setup-go@v2 with: - go-version: '1.16.x' + go-version: '1.17.x' - name: Set env shell: bash @@ -90,7 +90,7 @@ jobs: - name: Install Go uses: actions/setup-go@v2 with: - go-version: '1.16.x' + go-version: '1.17.x' - name: Set env shell: bash diff --git a/Vagrantfile b/Vagrantfile index 4596ad8a..9a4aac8c 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -3,19 +3,19 @@ Vagrant.configure("2") do |config| # Fedora box is used for testing cgroup v2 support - config.vm.box = "fedora/32-cloud-base" + config.vm.box = "fedora/35-cloud-base" config.vm.provider :virtualbox do |v| - v.memory = 2048 + v.memory = 4096 v.cpus = 2 end config.vm.provider :libvirt do |v| - v.memory = 2048 + v.memory = 4096 v.cpus = 2 end config.vm.provision "shell", inline: <<-SHELL set -eux -o pipefail # configuration - GO_VERSION="1.15" + GO_VERSION="1.17.7" # install gcc and Golang dnf -y install gcc