Skip to content

Commit f1eb07c

Browse files
committed
Use Go 1.16 and bump dependencies
The build was failing due to using a package, io/fs, that was introduced in Go 1.16 because go mods was resolving the wrong version of afero. I've updated our dependencies to resolve the conflict. Signed-off-by: Carolyn Van Slyck <[email protected]>
1 parent 411015b commit f1eb07c

File tree

3 files changed

+195
-28
lines changed

3 files changed

+195
-28
lines changed

azure-pipelines.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pool:
1515
steps:
1616
- task: GoTool@0
1717
inputs:
18-
version: '1.13.10'
18+
version: '1.16'
1919
displayName: 'Install Go'
2020

2121
- script: |

go.mod

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
module get.porter.sh/mixin/kubernetes
22

3-
go 1.15
3+
go 1.16
44

55
replace github.com/hashicorp/go-plugin => github.com/carolynvs/go-plugin v1.0.1-acceptstdin
66

77
require (
8-
get.porter.sh/porter v0.37.2
8+
get.porter.sh/porter v0.38.7
99
github.com/Masterminds/semver v1.5.0
1010
github.com/ghodss/yaml v1.0.0
11-
github.com/gobuffalo/packr/v2 v2.8.0
1211
github.com/pkg/errors v0.9.1
13-
github.com/spf13/cobra v1.0.0
14-
github.com/stretchr/testify v1.6.1
12+
github.com/spf13/cobra v1.1.3
13+
github.com/stretchr/testify v1.7.0
1514
github.com/xeipuuv/gojsonschema v1.2.0
16-
gopkg.in/yaml.v2 v2.2.4
15+
gopkg.in/yaml.v2 v2.4.0
1716
)

0 commit comments

Comments
 (0)