Skip to content

Commit

Permalink
Clarify cache not found message (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
eifinger authored Feb 18, 2024
1 parent 0938193 commit 3d6f315
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/save-cache/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/save-cache/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/setup/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/setup/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/restore-cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function handleMatchResult(
core.saveState(STATE_CACHE_MATCHED_KEY, matchedKey)
core.info(`Cache restored from key: ${matchedKey}`)
} else {
core.info(`Cache is not found`)
core.info(`No cache found for key: ${primaryKey}`)
}
core.setOutput('cache-hit', matchedKey === primaryKey)
}
Expand Down

0 comments on commit 3d6f315

Please sign in to comment.