We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a1c6b9 commit 0292151Copy full SHA for 0292151
1 file changed
src/main.ts
@@ -48,6 +48,17 @@ const NO_FILES_WARNING =
48
`.gcloudignore file in the repository.`;
49
50
export async function run(): Promise<void> {
51
+ // v0 is deprecated and is no longer supported per our "two major versions"
52
+ // policy.
53
+ core.error(
54
+ `The v0 series of google-github-actions/upload-cloud-storage is no ` +
55
+ `longer maintained. It will not receive updates, improvements, or ` +
56
+ `security patches. Please upgrade to the latest supported versions: ` +
57
+ `\n` +
58
59
+ ` https://github.com/google-github-actions/upload-cloud-storage`,
60
+ );
61
+
62
try {
63
// Warn if pinned to HEAD
64
if (isPinnedToHead()) {
0 commit comments