Skip to content

Commit

Permalink
upgrading Go to 1.19
Browse files Browse the repository at this point in the history
We switched to GO 1.18 in August, 2022 which is now EOL.

Our CI has switched to start running with Go 1.19.

Given these two motivations, upgrading pipelines to use 1.19

Signed-off-by: pritidesai <pdesai@us.ibm.com>
  • Loading branch information
pritidesai committed Feb 28, 2023
1 parent 1ac8e49 commit ee22b12
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 384 deletions.
8 changes: 4 additions & 4 deletions docs/pipeline-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -1511,8 +1511,8 @@ The names of the <code>params</code> in the <code>Matrix</code> must match the n
</td>
<td>
<em>(Optional)</em>
<p>Include is a list of MatrixInclude
Note this field is in preview mode and not yet supported</p>
<p>Include is a list of MatrixInclude which allows passing in specific combinations of Parameters into the Matrix.
Note that Include is in preview mode and not yet supported.</p>
</td>
</tr>
</tbody>
Expand Down Expand Up @@ -9067,8 +9067,8 @@ The names of the <code>params</code> in the <code>Matrix</code> must match the n
</td>
<td>
<em>(Optional)</em>
<p>Include is a list of MatrixInclude
Note this field is in preview mode and not yet supported</p>
<p>Include is a list of MatrixInclude which allows passing in specific combinations of Parameters into the Matrix.
Note that Include is in preview mode and not yet supported.</p>
</td>
</tr>
</tbody>
Expand Down
26 changes: 13 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/tektoncd/pipeline

go 1.18
go 1.19

require (
github.com/Microsoft/go-winio v0.6.0 // indirect
Expand Down Expand Up @@ -41,9 +41,19 @@ require github.com/benbjohnson/clock v1.1.0 // indirect

require (
code.gitea.io/sdk/gitea v0.15.1
github.com/cenkalti/backoff/v3 v3.2.2
github.com/goccy/kpoward v0.1.0
github.com/google/go-containerregistry/pkg/authn/k8schain v0.0.0-20221030203717-1711cefd7eec
github.com/hashicorp/go-cleanhttp v0.5.2
github.com/hashicorp/go-retryablehttp v0.7.1
github.com/hashicorp/go-rootcerts v1.0.2
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.7
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2
github.com/hashicorp/go-sockaddr v1.0.2
github.com/hashicorp/hcl v1.0.0
github.com/letsencrypt/boulder v0.0.0-20221109233200-85aa52084eaf
github.com/mitchellh/mapstructure v1.5.0
github.com/ryanuber/go-glob v1.0.0
github.com/titanous/rocacheck v0.0.0-20171023193734-afe73141d399
go.opentelemetry.io/otel v1.13.0
go.opentelemetry.io/otel/exporters/jaeger v1.13.0
Expand Down Expand Up @@ -73,7 +83,6 @@ require (
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
github.com/aws/aws-sdk-go-v2/service/kms v1.20.4 // indirect
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.3 // indirect
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
github.com/cloudflare/circl v1.1.0 // indirect
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
github.com/fatih/color v1.13.0 // indirect
Expand All @@ -83,21 +92,12 @@ require (
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
github.com/googleapis/gax-go/v2 v2.7.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.1 // indirect
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.7 // indirect
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hashicorp/vault/api v1.9.0 // indirect
github.com/jellydator/ttlcache/v2 v2.11.1 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/pjbgf/sha1cd v0.2.3 // indirect
github.com/rogpeppe/go-internal v1.8.0 // indirect
github.com/ryanuber/go-glob v1.0.0 // indirect
github.com/skeema/knownhosts v1.1.0 // indirect
github.com/theupdateframework/go-tuf v0.5.2-0.20220930112810-3890c1e7ace4 // indirect
github.com/zeebo/errs v1.3.0 // indirect
Expand Down Expand Up @@ -193,12 +193,12 @@ require (
go.uber.org/multierr v1.8.0 // indirect
golang.org/x/crypto v0.6.0
golang.org/x/mod v0.7.0 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/net v0.7.0
golang.org/x/sync v0.1.0
golang.org/x/sys v0.5.0 // indirect
golang.org/x/term v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
golang.org/x/time v0.2.0 // indirect
golang.org/x/time v0.2.0
golang.org/x/tools v0.5.0 // indirect
google.golang.org/api v0.110.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
Expand Down
20 changes: 0 additions & 20 deletions third_party/github.com/armon/go-metrics/LICENSE

This file was deleted.

20 changes: 0 additions & 20 deletions third_party/github.com/armon/go-radix/LICENSE

This file was deleted.

20 changes: 0 additions & 20 deletions third_party/github.com/fatih/color/LICENSE.md

This file was deleted.

27 changes: 0 additions & 27 deletions third_party/github.com/golang/snappy/LICENSE

This file was deleted.

21 changes: 0 additions & 21 deletions third_party/github.com/mattn/go-colorable/LICENSE

This file was deleted.

9 changes: 0 additions & 9 deletions third_party/github.com/mattn/go-isatty/LICENSE

This file was deleted.

21 changes: 0 additions & 21 deletions third_party/github.com/mitchellh/go-testing-interface/LICENSE

This file was deleted.

Loading

0 comments on commit ee22b12

Please sign in to comment.