diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 410d5197..82569049 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -3,7 +3,7 @@ pool: variables: GOBIN: '$(GOPATH)/bin' # Go binaries path - GOROOT: '/usr/local/go1.11' # Go installation path + GOROOT: '/usr/local/go1.13' # Go installation path GOPATH: '$(system.defaultWorkingDirectory)/gopath' # Go workspace path modulePath: '$(GOPATH)/src/github.com/$(build.repository.name)' # Path to the module's code @@ -20,7 +20,6 @@ steps: - script: | go version - go get -v -t -d ./... make bootstrap build test lint coverage workingDirectory: '$(modulePath)' displayName: 'Get dependencies, build, test' diff --git a/brigade.js b/brigade.js index f8359812..143a5312 100644 --- a/brigade.js +++ b/brigade.js @@ -3,7 +3,7 @@ const { events, Job } = require("brigadier"); const projectOrg = "cnabio"; const projectName = "cnab-go"; -const goImg = "golang:1.11"; +const goImg = "golang:1.13"; const gopath = "/go"; const localPath = gopath + `/src/github.com/${projectOrg}/${projectName}`;