Skip to content

Commit 5752093

Browse files
authored
Merge pull request #228 from ndeloof/go1.17
use go 1.17
2 parents c0414f6 + e9aecdc commit 5752093

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
test:
1717
strategy:
1818
matrix:
19-
go-version: [1.16.x]
19+
go-version: [1.17.x]
2020
platform: [ubuntu-latest, macos-latest, windows-latest]
2121
runs-on: ${{ matrix.platform }}
2222
timeout-minutes: 5

ci/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.16
15+
FROM golang:1.17
1616

1717
WORKDIR /go/src
1818

go.mod

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/compose-spec/compose-go
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/distribution/distribution/v3 v3.0.0-20210316161203-a01c71e2477e
@@ -18,3 +18,10 @@ require (
1818
gopkg.in/yaml.v2 v2.4.0
1919
gotest.tools/v3 v3.1.0
2020
)
21+
22+
require (
23+
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
24+
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
25+
golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4 // indirect
26+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
27+
)

0 commit comments

Comments
 (0)