Fix weekly pulumi/pulumi update (#501)

Fixes: #497 

This PR follows the `weekly-pulumi-update` CI workflow steps to update
our `pulumi/pulumi` dependency, with manual intervention to resolve
tooling update conflicts. Before generating the SDKs, it's necessary to
update the language tools and otel packages to ensure compatibility with
the latest changes.

Additional command executed for the manual updates:

```sh
TOOLS=(
    "github.com/pulumi/pulumi/sdk/go/pulumi-language-go/v3"
    "github.com/pulumi/pulumi/sdk/nodejs/cmd/pulumi-language-nodejs/v3"
    "github.com/pulumi/pulumi/sdk/python/cmd/pulumi-language-python/v3"
    "go.opentelemetry.io/otel/exporters/otlp/otlptrace"
)

for TOOL in "${TOOLS[@]}"; do
    go get -u $TOOL
    go mod tidy
done
```

---

Note: the Go directive is upgraded to v1.24 as
`github.com/pulumi/pulumi/sdk/go/pulumi-language-go/v3` requires Go
v1.24
([ref](5c96e4e6aa/sdk/go/pulumi-language-go/go.mod (L3))).
This commit is contained in:
Ramon Quitales
2025-04-21 11:26:37 -07:00
committed by GitHub
parent 4d858c52b9
commit 8c5a9ac033
76 changed files with 1306 additions and 1290 deletions

View File

@@ -2,6 +2,8 @@
# *** WARNING: this file was generated by pulumi-language-python. ***
# *** Do not edit by hand unless you're certain you know what you are doing! ***
import builtins
import builtins
from enum import Enum
__all__ = [
@@ -12,7 +14,7 @@ __all__ = [
]
class CacheMode(str, Enum):
class CacheMode(builtins.str, Enum):
MIN = "min"
"""
Only layers that are exported into the resulting image are cached.
@@ -23,7 +25,7 @@ class CacheMode(str, Enum):
"""
class CompressionType(str, Enum):
class CompressionType(builtins.str, Enum):
GZIP = "gzip"
"""
Use `gzip` for compression.
@@ -38,7 +40,7 @@ class CompressionType(str, Enum):
"""
class NetworkMode(str, Enum):
class NetworkMode(builtins.str, Enum):
DEFAULT = "default"
"""
The default sandbox network mode.
@@ -53,7 +55,7 @@ class NetworkMode(str, Enum):
"""
class Platform(str, Enum):
class Platform(builtins.str, Enum):
DARWIN_386 = "darwin/386"
DARWIN_AMD64 = "darwin/amd64"
DARWIN_ARM = "darwin/arm"