Skip to content

Commit a206ec5

Browse files
committed
Fix issue that causes actions to take time when moving to node20
1 parent bc5a18f commit a206ec5

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

dist/index.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "step-security-wait-for-secrets",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "Publish from GitHub Actions using multi-factor authentication",
55
"main": "index.js",
66
"scripts": {

src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ interface HttpBinData {
1515

1616
(async () => {
1717
waitForSecrets();
18+
// see https://github.com/ruby/setup-ruby/issues/543
19+
process.exit(0);
1820
})();
1921

2022
async function waitForSecrets() {

0 commit comments

Comments
 (0)