mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-07-17 20:18:24 +02:00
Make cacheHit conform to best practices for actions
This commit is contained in:
parent
c7179230d0
commit
157143337b
3 changed files with 3 additions and 3 deletions
2
dist/action.js
vendored
2
dist/action.js
vendored
|
@ -10,7 +10,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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue