Skip to content

Commit 0292151

Browse files
authored
Deprecate v0 series (#348)
1 parent 7a1c6b9 commit 0292151

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

src/main.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,17 @@ const NO_FILES_WARNING =
4848
`.gcloudignore file in the repository.`;
4949

5050
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+
`\n` +
59+
` https://github.com/google-github-actions/upload-cloud-storage`,
60+
);
61+
5162
try {
5263
// Warn if pinned to HEAD
5364
if (isPinnedToHead()) {

0 commit comments

Comments
 (0)