Skip to content

Commit d7891eb

Browse files
chore(deps): Bump github.com/pulumi/pulumi-terraform-bridge/v3 from 3.121.0 to 3.122.0 in /provider (#234)
* chore(deps): Bump github.com/pulumi/pulumi-terraform-bridge/v3 Bumps [github.com/pulumi/pulumi-terraform-bridge/v3](https://github.com/pulumi/pulumi-terraform-bridge) from 3.121.0 to 3.122.0. - [Release notes](https://github.com/pulumi/pulumi-terraform-bridge/releases) - [Changelog](https://github.com/pulumi/pulumi-terraform-bridge/blob/main/CHANGELOG_OLD.md) - [Commits](pulumi/pulumi-terraform-bridge@v3.121.0...v3.122.0) --- updated-dependencies: - dependency-name: github.com/pulumi/pulumi-terraform-bridge/v3 dependency-version: 3.122.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * chore: Update go version to 1.25.0 from 1.24.7 Signed-off-by: Alexander Dahmen <alexander.dahmen@inovex.de> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Alexander Dahmen <alexander.dahmen@inovex.de> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alexander Dahmen <alexander.dahmen@inovex.de>
1 parent 8f23bc6 commit d7891eb

File tree

16 files changed

+370
-235
lines changed

16 files changed

+370
-235
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
id-token: write
1313

1414
env:
15-
GO_VERSION: "1.24"
15+
GO_VERSION: "1.25"
1616
DOTNET_VERSION: 9.0.x
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1818
NODE_VERSION: 20.x

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
fail-fast: true
5353
matrix:
5454
goversion:
55-
- 1.24.x
55+
- 1.25.x
5656
publish_sdk:
5757
name: Publish SDKs to npm Registry, NuGet Gallery and Python Package Index
5858
runs-on: ubuntu-latest
@@ -107,7 +107,7 @@ jobs:
107107
dotnetversion:
108108
- 9.0.x
109109
goversion:
110-
- 1.24.x
110+
- 1.25.x
111111
language:
112112
- nodejs
113113
- python

.github/workflows/upgrade-provider.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
env:
1414
GH_TOKEN: ${{ secrets.PR_TOKEN }}
15-
GO_VERSION: "1.24"
15+
GO_VERSION: "1.25"
1616

1717
jobs:
1818
upgrade_provider:

CONTRIBUTION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Prerequisites:
1616

1717
- [`Pulumi`](https://www.pulumi.com/docs/iac/download-install/)
1818
- [`pulumictl`](https://github.com/pulumi/pulumictl)
19-
- [`Go`](https://go.dev/doc/install) 1.24+
19+
- [`Go`](https://go.dev/doc/install) 1.25+
2020
- [`dotnet`](https://dotnet.microsoft.com/en-us/download) 9.0.x
2121
- [`node`](https://nodejs.org/en/download) 20.x
2222
- [`python`](https://www.python.org/downloads) 3.9

examples/go/createCdnDistribution/go.mod

Lines changed: 28 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
module stackit-go
22

3-
go 1.24.0
4-
5-
toolchain go1.24.2
3+
go 1.25.0
64

75
require (
8-
github.com/pulumi/pulumi/sdk/v3 v3.220.0
6+
github.com/pulumi/pulumi/sdk/v3 v3.224.0
97
github.com/stackitcloud/pulumi-stackit/sdk v0.0.0-00010101000000-000000000000
108
)
119

@@ -22,6 +20,8 @@ require (
2220
github.com/atotto/clipboard v0.1.4 // indirect
2321
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
2422
github.com/blang/semver v3.5.1+incompatible // indirect
23+
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
24+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2525
github.com/charmbracelet/bubbles v0.16.1 // indirect
2626
github.com/charmbracelet/bubbletea v0.25.0 // indirect
2727
github.com/charmbracelet/lipgloss v0.7.1 // indirect
@@ -34,23 +34,31 @@ require (
3434
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
3535
github.com/go-git/go-billy/v5 v5.6.2 // indirect
3636
github.com/go-git/go-git/v5 v5.16.5 // indirect
37+
github.com/go-logr/logr v1.4.3 // indirect
38+
github.com/go-logr/stdr v1.2.2 // indirect
3739
github.com/gogo/protobuf v1.3.2 // indirect
38-
github.com/golang/glog v1.2.4 // indirect
40+
github.com/golang/glog v1.2.5 // indirect
3941
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
4042
github.com/google/uuid v1.6.0 // indirect
43+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.7 // indirect
4144
github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 // indirect
4245
github.com/hashicorp/errwrap v1.1.0 // indirect
4346
github.com/hashicorp/go-multierror v1.1.1 // indirect
47+
github.com/hashicorp/go-version v1.8.0 // indirect
4448
github.com/hashicorp/hcl/v2 v2.22.0 // indirect
4549
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4650
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
51+
github.com/json-iterator/go v1.1.12 // indirect
4752
github.com/kevinburke/ssh_config v1.2.0 // indirect
53+
github.com/klauspost/compress v1.18.0 // indirect
4854
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
4955
github.com/mattn/go-isatty v0.0.20 // indirect
5056
github.com/mattn/go-localereader v0.0.1 // indirect
5157
github.com/mattn/go-runewidth v0.0.15 // indirect
5258
github.com/mitchellh/go-ps v1.0.0 // indirect
5359
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
60+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
61+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
5462
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect
5563
github.com/muesli/cancelreader v0.2.2 // indirect
5664
github.com/muesli/reflow v0.3.0 // indirect
@@ -75,7 +83,18 @@ require (
7583
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
7684
github.com/xanzy/ssh-agent v0.3.3 // indirect
7785
github.com/zclconf/go-cty v1.13.2 // indirect
86+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
87+
go.opentelemetry.io/collector/featuregate v1.51.0 // indirect
88+
go.opentelemetry.io/collector/pdata v1.51.0 // indirect
89+
go.opentelemetry.io/otel v1.40.0 // indirect
90+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.40.0 // indirect
91+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.40.0 // indirect
92+
go.opentelemetry.io/otel/metric v1.40.0 // indirect
93+
go.opentelemetry.io/otel/sdk v1.40.0 // indirect
94+
go.opentelemetry.io/otel/trace v1.40.0 // indirect
95+
go.opentelemetry.io/proto/otlp v1.9.0 // indirect
7896
go.uber.org/atomic v1.9.0 // indirect
97+
go.uber.org/multierr v1.11.0 // indirect
7998
golang.org/x/crypto v0.47.0 // indirect
8099
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
81100
golang.org/x/mod v0.31.0 // indirect
@@ -85,9 +104,10 @@ require (
85104
golang.org/x/term v0.39.0 // indirect
86105
golang.org/x/text v0.33.0 // indirect
87106
golang.org/x/tools v0.40.0 // indirect
88-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250115164207-1a7da9e5054f // indirect
89-
google.golang.org/grpc v1.71.1 // indirect
90-
google.golang.org/protobuf v1.36.6 // indirect
107+
google.golang.org/genproto/googleapis/api v0.0.0-20260128011058-8636f8732409 // indirect
108+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260128011058-8636f8732409 // indirect
109+
google.golang.org/grpc v1.78.0 // indirect
110+
google.golang.org/protobuf v1.36.11 // indirect
91111
gopkg.in/warnings.v0 v0.1.2 // indirect
92112
gopkg.in/yaml.v3 v3.0.1 // indirect
93113
lukechampine.com/frand v1.4.2 // indirect

0 commit comments

Comments
 (0)