Skip to content

Commit

Permalink
fix: wait for seconds not milliseconds
Browse files Browse the repository at this point in the history
  • Loading branch information
matmar10 committed Apr 4, 2022
1 parent 53ff341 commit e30ac39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1525,7 +1525,7 @@ async function run() {
let isFinished;
do {
isFinished = await checkStatus();
await waitSeconds(5000);
await waitSeconds(5);
} while (!isFinished);
core.endGroup();
};
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ async function run() {
let isFinished;
do {
isFinished = await checkStatus();
await waitSeconds(5000);
await waitSeconds(5);
} while (!isFinished);
core.endGroup();
};
Expand Down

0 comments on commit e30ac39

Please sign in to comment.