Skip to content

Commit b352bf8

Browse files
committed
Bump from Go 1.16 to 1.17
Signed-off-by: Brandon Mitchell <[email protected]>
1 parent 019e2cc commit b352bf8

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,16 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
go: ['1.16', '1.17']
12+
go: ['1.17', '1.18', '1.19']
1313

1414
name: Documentation and Linting
1515
steps:
1616

17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
with:
1919
path: go/src/github.com/opencontainers/image-spec
2020

21-
# commit for v1 release
22-
- uses: actions/setup-go@0caeaed6fd66a828038c2da3c0f662a42862658f
21+
- uses: actions/setup-go@v3
2322
with:
2423
go-version: ${{ matrix.go }}
2524

@@ -40,7 +39,7 @@ jobs:
4039
make docs
4140
4241
- name: documentation artifacts
43-
uses: actions/upload-artifact@v2
42+
uses: actions/upload-artifact@v3
4443
with:
4544
name: oci-docs
4645
path: go/src/github.com/opencontainers/image-spec/output

go.mod

Lines changed: 3 additions & 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.16
3+
go 1.17
44

55
require (
66
github.com/davecgh/go-spew v1.1.1 // indirect
@@ -12,3 +12,5 @@ require (
1212
github.com/xeipuuv/gojsonschema v1.2.0
1313
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
1414
)
15+
16+
require github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect

0 commit comments

Comments
 (0)