Automated upgrade: bump pulumi/pulumi to 3.143.0 #266
Annotations
2 errors and 1 warning
Check worktree clean:
sdk/java/src/main/java/com/pulumi/kubernetescertmanager/Utilities.java#L1
File modified:
@@ -14,6 +14,7 @@ import java.util.stream.Collectors;
import javax.annotation.Nullable;
import com.pulumi.core.internal.Environment;
import com.pulumi.deployment.InvokeOptions;
+import com.pulumi.deployment.InvokeOutputOptions;
public class Utilities {
@@ -57,16 +58,28 @@ public class Utilities {
return Optional.empty();
}
- public static InvokeOptions withVersion(@nullable InvokeOptions options) {
- if (options != null && options.getVersion().isPresent()) {
- return options;
- }
- return new InvokeOptions(
- options == null ? null : options.getParent().orElse(null),
- options == null ? null : options.getProvider().orElse(null),
- getVersion()
- );
+ public static InvokeOptions withVersion(@nullable InvokeOptions options) {
+ if (options != null && options.getVersion().isPresent()) {
+ return options;
+ }
+ return new InvokeOptions(
+ options == null ? null : options.getParent().orElse(null),
+ options == null ? null : options.getProvider().orElse(null),
+ getVersion()
+ );
+ }
+
+ public static InvokeOutputOptions withVersion(@nullable InvokeOutputOptions options) {
+ if (options != null && options.getVersion().isPresent()) {
+ return options;
}
+ return new InvokeOutputOptions(
+ options == null ? null : options.getParent().orElse(null),
+ options == null ? null : options.getProvider().orElse(null),
+ getVersion(),
+ options == null ? null : options.getDependsOn()
+ );
+ }
private static final java.lang.String version;
public static java.lang.String getVersion() {
|
Check worktree clean
Unexpected changes detected: 1. See file annotations for details.
|
Post Setup Gradle
This job uses deprecated functionality from the 'gradle/gradle-build-action' action. Consult the Job Summary for more details.
|
Loading