Skip to content

Commit a914a16

Browse files
authored
Merge pull request #1007 from austinvazquez/add-go-1.20
Add Go 1.20 support
2 parents c71be7f + 1f60184 commit a914a16

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/docs-and-linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
go: ['1.17', '1.18', '1.19']
12+
go: ['1.18', '1.19', '1.20']
1313

1414
name: Documentation and Linting
1515
steps:

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ install.tools: $(TOOLS:%=.install.%)
112112

113113
.install.lint:
114114
case "$$(go env GOVERSION)" in \
115-
go1.17.*) go install github.com/golangci/golangci-lint/cmd/[email protected];; \
116115
go1.18.*) go install github.com/golangci/golangci-lint/cmd/[email protected];; \
117116
*) go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest;; \
118117
esac

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/opencontainers/image-spec
22

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/davecgh/go-spew v1.1.1 // indirect

0 commit comments

Comments
 (0)