We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53a3010 commit 8f1af80Copy full SHA for 8f1af80
src/main.ts
@@ -50,6 +50,17 @@ enum ResponseTypes {
50
* primary entry point. It is documented inline.
51
*/
52
export async function run(): Promise<void> {
53
+ // v0 is deprecated and is no longer supported per our "two major versions"
54
+ // policy.
55
+ core.error(
56
+ `The v0 series of google-github-actions/deploy-cloudrun is no longer ` +
57
+ `maintained. It will not receive updates, improvements, or security ` +
58
+ `patches. Please upgrade to the latest supported versions: ` +
59
+ `\n` +
60
61
+ ` https://github.com/google-github-actions/deploy-cloudrun`,
62
+ );
63
+
64
core.exportVariable(GCLOUD_METRICS_ENV_VAR, GCLOUD_METRICS_LABEL);
65
try {
66
// Get inputs
0 commit comments