Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Bump conventional-changelog-conventionalcommits from 5.0.0 to 7.0.2 in /.release #393

2 changes: 1 addition & 1 deletion .release/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"conventional-changelog-conventionalcommits": "^5.0.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"semantic-release": "^19.0.3"
}
}
10 changes: 4 additions & 6 deletions .release/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -878,14 +878,12 @@ conventional-changelog-angular@^5.0.0:
compare-func "^2.0.0"
q "^1.5.1"

conventional-changelog-conventionalcommits@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-5.0.0.tgz#41bdce54eb65a848a4a3ffdca93e92fa22b64a86"
integrity sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw==
conventional-changelog-conventionalcommits@^7.0.2:
version "7.0.2"
resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-7.0.2.tgz#aa5da0f1b2543094889e8cf7616ebe1a8f5c70d5"
integrity sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==
dependencies:
compare-func "^2.0.0"
lodash "^4.17.15"
q "^1.5.1"

conventional-changelog-writer@^5.0.0:
version "5.0.1"
Expand Down
3 changes: 3 additions & 0 deletions modules/runners/lambdas/runners/src/aws/runners.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,8 @@ export async function createRunner(runnerParameters: RunnerInputParameters): Pro
logger.info('Created instance(s): ', instances.join(','), LogFields.print());

const ssm = new SSM();
const delay = async (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));

for (const instance of instances) {
await ssm
.putParameter({
Expand All @@ -211,5 +213,6 @@ export async function createRunner(runnerParameters: RunnerInputParameters): Pro
Type: 'SecureString',
})
.promise();
await delay(25);
}
}
Loading