Skip to content

Commit ea66130

Browse files
committed
Switch to Go 1.19
Signed-off-by: Maksym Pavlenko <[email protected]>
1 parent 01a2b79 commit ea66130

18 files changed

Lines changed: 20 additions & 20 deletions

File tree

.github/workflows/build-test-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
steps:
4040
- uses: actions/setup-go@v2
4141
with:
42-
go-version: '1.18.5'
42+
go-version: '1.19'
4343

4444
- uses: actions/checkout@v2
4545
with:

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
env:
1313
# Go version we currently use to build containerd across all CI.
1414
# Note: don't forget to update `Binaries` step, as it contains the matrix of all supported Go versions.
15-
GO_VERSION: '1.18.5'
15+
GO_VERSION: '1.19'
1616

1717
jobs:
1818
#
@@ -219,7 +219,7 @@ jobs:
219219
strategy:
220220
matrix:
221221
os: [ubuntu-18.04, macos-12, windows-2019, windows-2022]
222-
go-version: ['1.17.13', '1.18.5']
222+
go-version: ['1.19', '1.18.5']
223223
steps:
224224
- uses: actions/setup-go@v2
225225
with:

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- uses: actions/setup-go@v2
2828
with:
29-
go-version: 1.18.5
29+
go-version: 1.19
3030

3131
# Initializes the CodeQL tools for scanning.
3232
- name: Initialize CodeQL

.github/workflows/images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
- uses: actions/setup-go@v2
2626
with:
27-
go-version: '1.18.5'
27+
go-version: '1.19'
2828

2929
- uses: actions/checkout@v2
3030
with:

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- '.github/workflows/nightly.yml'
88

99
env:
10-
GO_VERSION: '1.18.5'
10+
GO_VERSION: '1.19'
1111

1212
jobs:
1313
linux:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
name: Containerd Release
77

88
env:
9-
GO_VERSION: '1.18.5'
9+
GO_VERSION: '1.19'
1010

1111
jobs:
1212
check:

.zuul/playbooks/containerd-build/integration-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
become: yes
33
roles:
44
- role: config-golang
5-
go_version: '1.18.5'
5+
go_version: '1.19'
66
arch: arm64
77
tasks:
88
- name: Install pre-requisites

.zuul/playbooks/containerd-build/run.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
become: yes
33
roles:
44
- role: config-golang
5-
go_version: '1.18.5'
5+
go_version: '1.19'
66
arch: arm64
77
tasks:
88
- name: Build containerd

.zuul/playbooks/containerd-build/unit-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
become: yes
33
roles:
44
- role: config-golang
5-
go_version: '1.18.5'
5+
go_version: '1.19'
66
arch: arm64
77
tasks:
88
- name: Build and test containerd

Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ EOF
9797
config.vm.provision "install-golang", type: "shell", run: "once" do |sh|
9898
sh.upload_path = "/tmp/vagrant-install-golang"
9999
sh.env = {
100-
'GO_VERSION': ENV['GO_VERSION'] || "1.18.5",
100+
'GO_VERSION': ENV['GO_VERSION'] || "1.19",
101101
}
102102
sh.inline = <<~SHELL
103103
#!/usr/bin/env bash

0 commit comments

Comments
 (0)