Skip to content

Commit 9e421b9

Browse files
committed
Drop Go 1.16
containerd 1.6.8 doesn't work with Go 1.16. Signed-off-by: Kazuyoshi Kato <[email protected]>
1 parent 7bc00eb commit 9e421b9

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: ['ubuntu-20.04', 'ubuntu-22.04']
17-
go: ['1.16', '1.17']
17+
go: ['1.17', '1.18', '1.19']
1818
# Build all variants regardless of failures
1919
fail-fast: false
2020

@@ -49,13 +49,6 @@ jobs:
4949
- run: |
5050
make tidy
5151
git diff --exit-code
52-
# opencontainers/selinux uses Go 1.16's io/fs package with "go1.16"
53-
# build tag. However, since go mod tidy acts as like all build tags
54-
# are enabled, the file below included in go mod tidy, even
55-
# Go is < 1.16.
56-
# https://github.com/opencontainers/selinux/blob/v1.9.1/go-selinux/rchcon.go
57-
# https://golang.org/ref/mod
58-
if: matrix.go >= '1.16'
5952
- run: |
6053
make proto
6154
git diff --exit-code

0 commit comments

Comments
 (0)