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

update Go version to 1.21.x #1601

Merged
merged 1 commit into from
Feb 22, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
update Go version to 1.21.x
pulumi/pulumi generally supports the two latest Go releases. Since 1.22.x came out, we dropped support for 1.20.x, and indeed compilation of the latest pulumi/pulumi source is failing with the latest Go version because of the missing slices package.

Update CI to the latest supported Go version, so we are able to update pulumi/pulumi in this repo.
  • Loading branch information
tgummerer committed Feb 22, 2024
commit 2d6d64a17a5c1f70e487504ae66f6a6dca53c56e
10 changes: 5 additions & 5 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
fail-fast: false
matrix:
goversion:
- 1.20.x
- 1.21.x
platform:
- ubuntu-latest
source-dir:
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:
dotnetversion:
- 6.0.114
goversion:
- 1.20.x
- 1.21.x
nodeversion:
- 18.x
platform:
Expand Down Expand Up @@ -349,7 +349,7 @@ jobs:
examples-test-matrix:
- default
goversion:
- 1.20.x
- 1.21.x
languages:
- Cs
- Js
Expand Down Expand Up @@ -496,7 +496,7 @@ jobs:
dotnetversion:
- 6.0.114
goversion:
- 1.20.x
- 1.21.x
nodeversion:
- 18.x
platform:
Expand Down Expand Up @@ -601,7 +601,7 @@ jobs:
dotnetversion:
- 6.0.114
goversion:
- 1.20.x
- 1.21.x
nodeversion:
- 18.x
platform:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/performance_metrics_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
dotnet-version:
- 6.0.114
go-version:
- 1.20.x
- 1.21.x
node-version:
- 16.x
platform:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/run-tests-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
fail-fast: false
matrix:
goversion:
- 1.20.x
- 1.21.x
platform:
- ubuntu-latest
source-dir:
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
dotnetversion:
- 6.0.114
goversion:
- 1.20.x
- 1.21.x
nodeversion:
- 18.x
platform:
Expand Down Expand Up @@ -379,7 +379,7 @@ jobs:
dotnetversion:
- 6.0.114
goversion:
- 1.20.x
- 1.21.x
languages:
- Cs
- Js
Expand Down Expand Up @@ -547,7 +547,7 @@ jobs:
dotnetversion:
- 6.0.114
goversion:
- 1.20.x
- 1.21.x
nodeversion:
- 18.x
platform:
Expand Down Expand Up @@ -654,7 +654,7 @@ jobs:
dotnetversion:
- 6.0.114
goversion:
- 1.20.x
- 1.21.x
nodeversion:
- 18.x
platform:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/smoke-test-cli-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
fail-fast: false
matrix:
goversion:
- 1.20.x
- 1.21.x
platform:
- ubuntu-latest
source-dir:
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
dotnetversion:
- 6.0.114
goversion:
- 1.20.x
- 1.21.x
nodeversion:
- 18.x
platform:
Expand Down Expand Up @@ -309,7 +309,7 @@ jobs:
dotnetversion:
- 6.0.114
goversion:
- 1.20.x
- 1.21.x
languages:
- Cs
- Js
Expand Down Expand Up @@ -456,7 +456,7 @@ jobs:
dotnetversion:
- 6.0.114
goversion:
- 1.20.x
- 1.21.x
nodeversion:
- 18.x
platform:
Expand Down Expand Up @@ -561,7 +561,7 @@ jobs:
dotnetversion:
- 6.0.114
goversion:
- 1.20.x
- 1.21.x
nodeversion:
- 18.x
platform:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/smoke-test-provider-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
fail-fast: false
matrix:
goversion:
- 1.20.x
- 1.21.x
platform:
- ubuntu-latest
source-dir:
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
dotnetversion:
- 6.0.114
goversion:
- 1.20.x
- 1.21.x
nodeversion:
- 18.x
platform:
Expand Down Expand Up @@ -302,7 +302,7 @@ jobs:
dotnetversion:
- 6.0.114
goversion:
- 1.20.x
- 1.21.x
languages:
- Cs
- Js
Expand Down Expand Up @@ -449,7 +449,7 @@ jobs:
dotnetversion:
- 6.0.114
goversion:
- 1.20.x
- 1.21.x
nodeversion:
- 18.x
platform:
Expand Down Expand Up @@ -554,7 +554,7 @@ jobs:
dotnetversion:
- 6.0.114
goversion:
- 1.20.x
- 1.21.x
nodeversion:
- 18.x
platform:
Expand Down
Loading