From 49c3d09c01ee0f99a092c2df3446cf93b2134072 Mon Sep 17 00:00:00 2001 From: Zachary Taylor Date: Thu, 26 Feb 2026 14:28:46 -0500 Subject: [PATCH] Update error message --- packages/artifact/src/internal/shared/errors.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/artifact/src/internal/shared/errors.ts b/packages/artifact/src/internal/shared/errors.ts index 1ceb5c66..f962f085 100644 --- a/packages/artifact/src/internal/shared/errors.ts +++ b/packages/artifact/src/internal/shared/errors.ts @@ -60,7 +60,7 @@ export class NetworkError extends Error { export class UsageError extends Error { constructor() { - const message = `Artifact storage quota has been hit. Unable to upload any new artifacts. Usage is recalculated every 6-12 hours.\nMore info on storage limits: https://docs.github.com/en/billing/managing-billing-for-github-actions/about-billing-for-github-actions#calculating-minute-and-storage-spending` + const message = `Artifact storage quota has been hit. Unable to upload any new artifacts.\nMore info on storage limits: https://docs.github.com/en/billing/managing-billing-for-github-actions/about-billing-for-github-actions#calculating-minute-and-storage-spending` super(message) this.name = 'UsageError' }