3
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-22 11:25:31 +00:00

Use warning instead of info

This commit is contained in:
Dave Hadka 2020-09-30 08:47:16 -05:00
parent 55a5894438
commit d3e4f218f3
6 changed files with 8 additions and 8 deletions

View file

@ -7,7 +7,7 @@ import * as utils from "./utils/actionUtils";
async function run(): Promise<void> {
try {
if (utils.isGhes()) {
core.info("Cache action is not supported on GHES");
utils.logWarning("Cache action is not supported on GHES");
utils.setCacheHitOutput(false);
return;
}

View file

@ -7,7 +7,7 @@ import * as utils from "./utils/actionUtils";
async function run(): Promise<void> {
try {
if (utils.isGhes()) {
core.info("Cache action is not supported on GHES");
utils.logWarning("Cache action is not supported on GHES");
return;
}