mirror of
https://github.com/oven-sh/setup-bun.git
synced 2026-05-19 06:40:14 +02:00
Make cacheHit conform to best practices for actions
This commit is contained in:
+1
-1
@@ -12,7 +12,7 @@ setup({
|
||||
})
|
||||
.then(({ version, cacheHit }) => {
|
||||
action.setOutput("bun-version", version);
|
||||
action.setOutput("cache-hit", cacheHit ? "1" : "0");
|
||||
action.setOutput("cache-hit", cacheHit);
|
||||
})
|
||||
.catch((error) => {
|
||||
action.setFailed(error);
|
||||
|
||||
Reference in New Issue
Block a user