Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update pipelines to build with Go 1.20.7 #2856

Merged
merged 2 commits into from Aug 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/azure-pipelines.integration.yml
Expand Up @@ -12,7 +12,7 @@ pool:
vmImage: "ubuntu-latest"

variables: # these are really constants
GOVERSION: "1.20"
GOVERSION: "1.20.7"
# Cache go modules and the results of go build/test
# Increment the version number prefix of the key and restoreKey to clear the cache
GOCACHE: $(Pipeline.Workspace)/.cache/go-build/
Expand Down
2 changes: 1 addition & 1 deletion build/azure-pipelines.pr-automatic.yml
Expand Up @@ -11,7 +11,7 @@ pool:
vmImage: "ubuntu-latest"

variables:
GOVERSION: "1.20"
GOVERSION: "1.20.7"
# Cache go modules and the results of go build/test
# Increment the version number prefix of the key and restoreKey to clear the cache
GOCACHE: $(Pipeline.Workspace)/.cache/go-build/
Expand Down
4 changes: 2 additions & 2 deletions build/azure-pipelines.release-template.yml
@@ -1,6 +1,6 @@
variables: # these are really constants
vmImage: "ubuntu-latest"
GOVERSION: "1.20"
GOVERSION: "1.20.7"
# Cache go modules and the results of go build/test
# Increment the version number prefix of the key and restoreKey to clear the cache
GOCACHE: $(Pipeline.Workspace)/.cache/go-build/
Expand All @@ -22,7 +22,7 @@ variables: # these are really constants
parameters:
- name: goVersion
type: string
default: "1.20"
default: "1.20.7"
- name: registry
type: string
default: ghcr.io/getporter/test
Expand Down