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

fix: upgrade go v1.22.2 #5192

Closed
wants to merge 2 commits into from
Closed
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 .circleci/config.yml
Expand Up @@ -16,7 +16,7 @@ parameters:
go_version:
type: string
# https://go.dev/doc/devel/release
default: '1.21.7'
default: '1.22.2'
aws_version:
type: string
# https://github.com/aws/aws-cli/blob/v2/CHANGELOG.rst
Expand Down
2 changes: 1 addition & 1 deletion cliv2/go.mod
@@ -1,6 +1,6 @@
module github.com/snyk/cli/cliv2

go 1.21
go 1.22

require (
github.com/elazarl/goproxy v0.0.0-20231031074852-3ec07828be7a
Expand Down
2 changes: 1 addition & 1 deletion test/jest/acceptance/extra-certs.spec.ts
Expand Up @@ -41,7 +41,7 @@ describe('Extra CA certificates specified with `NODE_EXTRA_CA_CERTS`', () => {
{ cwd: 'cliv2', env: { ...process.env, SNYK_DNS_NAMES: 'localhost' } },
);

console.debug(res.stderr);
console.log(res.stderr);
expect(res.code).toBe(0);

// setup https server
Expand Down