From efa472d023e55323929e9c2a890b221af99fe4b9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?V=C3=ADt=20Stanislav?= <vits@kryptoslogic.com>
Date: Mon, 19 Jul 2021 10:55:21 +0200
Subject: [PATCH] Update new GHE-not-supported message in tests

---
 __tests__/restore.test.ts | 2 +-
 __tests__/save.test.ts    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/__tests__/restore.test.ts b/__tests__/restore.test.ts
index 446237c..4761782 100644
--- a/__tests__/restore.test.ts
+++ b/__tests__/restore.test.ts
@@ -68,7 +68,7 @@ test("restore on GHES should no-op", async () => {
     expect(setCacheHitOutputMock).toHaveBeenCalledTimes(1);
     expect(setCacheHitOutputMock).toHaveBeenCalledWith(false);
     expect(logWarningMock).toHaveBeenCalledWith(
-        "Cache action is not supported on GHES"
+        "Cache action is not supported on GHES. See https://github.com/actions/cache/issues/505 for more details"
     );
 });
 
diff --git a/__tests__/save.test.ts b/__tests__/save.test.ts
index b806d50..30178a2 100644
--- a/__tests__/save.test.ts
+++ b/__tests__/save.test.ts
@@ -111,7 +111,7 @@ test("save on GHES should no-op", async () => {
 
     expect(saveCacheMock).toHaveBeenCalledTimes(0);
     expect(logWarningMock).toHaveBeenCalledWith(
-        "Cache action is not supported on GHES"
+        "Cache action is not supported on GHES. See https://github.com/actions/cache/issues/505 for more details"
     );
 });