Automated upgrade: bump pulumi/pulumi to 3.135.0 #186
run-acceptance-tests.yml
on: pull_request
Annotations
10 errors and 5 warnings
Unexpected file modified:
sdk/java/build.gradle#L1
File modified:
@@ -151,4 +151,4 @@ if (signingKey) {
useInMemoryPgpKeys(signingKey, signingPassword)
sign publishing.publications.mainPublication
}
-}
\ No newline at end of file
+}
|
Unexpected file modified:
sdk/java/src/main/java/com/pulumi/kubernetescertmanager/CertManager.java#L1
File modified:
@@ -37,7 +37,7 @@ public class CertManager extends com.pulumi.resources.ComponentResource {
*
* @param name The _unique_ name of the resulting resource.
*/
- public CertManager(String name) {
+ public CertManager(java.lang.String name) {
this(name, CertManagerArgs.Empty);
}
/**
@@ -45,7 +45,7 @@ public class CertManager extends com.pulumi.resources.ComponentResource {
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
- public CertManager(String name, @nullable CertManagerArgs args) {
+ public CertManager(java.lang.String name, @nullable CertManagerArgs args) {
this(name, args, null);
}
/**
@@ -54,11 +54,18 @@ public class CertManager extends com.pulumi.resources.ComponentResource {
* @param args The arguments to use to populate this resource's properties.
* @param options A bag of options that control this resource's behavior.
*/
- public CertManager(String name, @nullable CertManagerArgs args, @nullable com.pulumi.resources.ComponentResourceOptions options) {
- super("kubernetes-cert-manager:index:CertManager", name, args == null ? CertManagerArgs.Empty : args, makeResourceOptions(options, Codegen.empty()), true);
+ public CertManager(java.lang.String name, @nullable CertManagerArgs args, @nullable com.pulumi.resources.ComponentResourceOptions options) {
+ super("kubernetes-cert-manager:index:CertManager", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), true);
}
- private static com.pulumi.resources.ComponentResourceOptions makeResourceOptions(@nullable com.pulumi.resources.ComponentResourceOptions options, @nullable Output<String> id) {
+ private static CertManagerArgs makeArgs(@nullable CertManagerArgs args, @nullable com.pulumi.resources.ComponentResourceOptions options) {
+ if (options != null && options.getUrn().isPresent()) {
+ return null;
+ }
+ return args == null ? CertManagerArgs.Empty : args;
+ }
+
+ private static com.pulumi.resources.ComponentResourceOptions makeResourceOptions(@nullable com.pulumi.resources.ComponentResourceOptions options, @nullable Output<java.lang.String> id) {
var defaultOptions = com.pulumi.resources.ComponentResourceOptions.builder()
.version(Utilities.getVersion())
.build();
|
Unexpected file modified:
sdk/java/src/main/java/com/pulumi/kubernetescertmanager/Provider.java#L1
File modified:
@@ -16,7 +16,7 @@ public class Provider extends com.pulumi.resources.ProviderResource {
*
* @param name The _unique_ name of the resulting resource.
*/
- public Provider(String name) {
+ public Provider(java.lang.String name) {
this(name, ProviderArgs.Empty);
}
/**
@@ -24,7 +24,7 @@ public class Provider extends com.pulumi.resources.ProviderResource {
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
- public Provider(String name, @nullable ProviderArgs args) {
+ public Provider(java.lang.String name, @nullable ProviderArgs args) {
this(name, args, null);
}
/**
@@ -33,11 +33,18 @@ public class Provider extends com.pulumi.resources.ProviderResource {
* @param args The arguments to use to populate this resource's properties.
* @param options A bag of options that control this resource's behavior.
*/
- public Provider(String name, @nullable ProviderArgs args, @nullable com.pulumi.resources.CustomResourceOptions options) {
- super("kubernetes-cert-manager", name, args == null ? ProviderArgs.Empty : args, makeResourceOptions(options, Codegen.empty()));
+ public Provider(java.lang.String name, @nullable ProviderArgs args, @nullable com.pulumi.resources.CustomResourceOptions options) {
+ super("kubernetes-cert-manager", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
- private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@nullable com.pulumi.resources.CustomResourceOptions options, @nullable Output<String> id) {
+ private static ProviderArgs makeArgs(@nullable ProviderArgs args, @nullable com.pulumi.resources.CustomResourceOptions options) {
+ if (options != null && options.getUrn().isPresent()) {
+ return null;
+ }
+ return args == null ? ProviderArgs.Empty : args;
+ }
+
+ private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@nullable com.pulumi.resources.CustomResourceOptions options, @nullable Output<java.lang.String> id) {
var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder()
.version(Utilities.getVersion())
.build();
|
Unexpected file modified:
sdk/java/src/main/java/com/pulumi/kubernetescertmanager/Utilities.java#L1
File modified:
@@ -17,7 +17,7 @@ import com.pulumi.deployment.InvokeOptions;
public class Utilities {
- public static Optional<String> getEnv(String... names) {
+ public static Optional<java.lang.String> getEnv(java.lang.String... names) {
for (var n : names) {
var value = Environment.getEnvironmentVariable(n);
if (value.isValue()) {
@@ -27,7 +27,7 @@ public class Utilities {
return Optional.empty();
}
- public static Optional<Boolean> getEnvBoolean(String... names) {
+ public static Optional<java.lang.Boolean> getEnvBoolean(java.lang.String... names) {
for (var n : names) {
var value = Environment.getBooleanEnvironmentVariable(n);
if (value.isValue()) {
@@ -37,7 +37,7 @@ public class Utilities {
return Optional.empty();
}
- public static Optional<Integer> getEnvInteger(String... names) {
+ public static Optional<java.lang.Integer> getEnvInteger(java.lang.String... names) {
for (var n : names) {
var value = Environment.getIntegerEnvironmentVariable(n);
if (value.isValue()) {
@@ -47,7 +47,7 @@ public class Utilities {
return Optional.empty();
}
- public static Optional<Double> getEnvDouble(String... names) {
+ public static Optional<java.lang.Double> getEnvDouble(java.lang.String... names) {
for (var n : names) {
var value = Environment.getDoubleEnvironmentVariable(n);
if (value.isValue()) {
@@ -68,8 +68,8 @@ public class Utilities {
);
}
- private static final String version;
- public static String getVersion() {
+ private static final java.lang.String version;
+ public static java.lang.String getVersion() {
return version;
}
@@ -78,7 +78,7 @@ public class Utilities {
var versionFile = Utilities.class.getClassLoader().getResourceAsStream(resourceName);
if (versionFile == null) {
throw new IllegalStateException(
- String.format("expected resource '%s' on Classpath, not found", resourceName)
+ java.lang.String.format("expected resource '%s' on Classpath, not found", resourceName)
);
}
version = new BufferedReader(new InputStreamReader(versionFile))
|
build_sdks (java)
Unexpected changes detected: 4. See file annotations for details.
|
build_sdks (nodejs)
The job was canceled because "java" failed.
|
build_sdks (nodejs)
The operation was canceled.
|
build_sdks (python)
The job was canceled because "java" failed.
|
build_sdks (python)
The operation was canceled.
|
build_sdks (dotnet)
The job was canceled because "java" failed.
|
prerequisites
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-ecosystem/[email protected]. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
prerequisites
The following actions use a deprecated Node.js version and will be forced to run on node20: actions-ecosystem/[email protected]. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
prerequisites
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
build_sdks (go)
This job uses deprecated functionality from the 'gradle/gradle-build-action' action. Consult the Job Summary for more details.
|
build_sdks (java)
This job uses deprecated functionality from the 'gradle/gradle-build-action' action. Consult the Job Summary for more details.
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
dotnet-sdk.tar.gz
Expired
|
180 KB |
|
go-sdk.tar.gz
Expired
|
21.4 KB |
|
pulumi-kubernetes-cert-manager-provider.tar.gz
|
28.5 MB |
|