Skip to content

Commit 0173d7b

Browse files
authored
chore: bump runtimeId to latest (2024.09) in examples (#1011)
1 parent 33f3c08 commit 0173d7b

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

examples/advanced-project-js/checkly.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const config = defineConfig({
2424
/** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime.
2525
* See https://www.checklyhq.com/docs/cli/npm-packages/
2626
*/
27-
runtimeId: '2024.02',
27+
runtimeId: '2024.09',
2828
/* Failed check runs will be retried before triggering alerts */
2929
retryStrategy: RetryStrategyBuilder.fixedStrategy({ baseBackoffSeconds: 60, maxRetries: 4, sameRegion: true }),
3030
/* A glob pattern that matches the Checks inside your repo, see https://www.checklyhq.com/docs/cli/using-check-test-match/ */

examples/advanced-project-js/src/__checks__/multi-step-spacex.check.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const alertChannels = [smsChannel, emailChannel]
1313
// We can define multiple checks in a single *.check.js file.
1414
new MultiStepCheck('spacex-multistep-check', {
1515
name: 'SpaceX MS',
16-
runtimeId: '2024.02',
16+
runtimeId: '2024.09',
1717
alertChannels,
1818
code: {
1919
entrypoint: path.join(__dirname, 'spacex-requests.spec.js')

examples/advanced-project-js/src/__checks__/website-group.check.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const websiteGroup = new CheckGroup('website-check-group-1', {
1717
name: 'Website Group',
1818
activated: true,
1919
muted: false,
20-
runtimeId: '2024.02',
20+
runtimeId: '2024.09',
2121
locations: ['us-east-1', 'eu-west-1'],
2222
tags: ['mac', 'group'],
2323
environmentVariables: [],

examples/advanced-project/checkly.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const config = defineConfig({
2424
/** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime.
2525
* See https://www.checklyhq.com/docs/cli/npm-packages/
2626
*/
27-
runtimeId: '2024.02',
27+
runtimeId: '2024.09',
2828
/* Failed check runs will be retried before triggering alerts */
2929
retryStrategy: RetryStrategyBuilder.fixedStrategy({ baseBackoffSeconds: 60, maxRetries: 4, sameRegion: true }),
3030
/* All checks will have this alert escalation policy defined */

examples/advanced-project/src/__checks__/multi-step-spacex.check.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const alertChannels = [smsChannel, emailChannel]
1313
// We can define multiple checks in a single *.check.ts file.
1414
new MultiStepCheck('spacex-multistep-check', {
1515
name: 'SpaceX MS',
16-
runtimeId: '2024.02',
16+
runtimeId: '2024.09',
1717
alertChannels,
1818
code: {
1919
entrypoint: path.join(__dirname, 'spacex-requests.spec.ts')

examples/advanced-project/src/__checks__/website-group.check.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const websiteGroup = new CheckGroup('website-check-group-1', {
1717
name: 'Website Group',
1818
activated: true,
1919
muted: false,
20-
runtimeId: '2024.02',
20+
runtimeId: '2024.09',
2121
locations: ['us-east-1', 'eu-west-1'],
2222
tags: ['mac', 'group'],
2323
environmentVariables: [],

examples/boilerplate-project-js/checkly.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const config = defineConfig({
2323
/** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime.
2424
* See https://www.checklyhq.com/docs/cli/npm-packages/
2525
*/
26-
runtimeId: '2024.02',
26+
runtimeId: '2024.09',
2727
/* A glob pattern that matches the Checks inside your repo, see https://www.checklyhq.com/docs/cli/using-check-test-match/ */
2828
checkMatch: '**/__checks__/**/*.check.js',
2929
/* Global configuration option for Playwright-powered checks. See https://www.checklyhq.com/docs/browser-checks/playwright-test/#global-configuration */

examples/boilerplate-project/checkly.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const config = defineConfig({
2323
/** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime.
2424
* See https://www.checklyhq.com/docs/cli/npm-packages/
2525
*/
26-
runtimeId: '2024.02',
26+
runtimeId: '2024.09',
2727
/* A glob pattern that matches the Checks inside your repo, see https://www.checklyhq.com/docs/cli/using-check-test-match/ */
2828
checkMatch: '**/__checks__/**/*.check.ts',
2929
/* Global configuration option for Playwright-powered checks. See https://www.checklyhq.com/docs/browser-checks/playwright-test/#global-configuration */

0 commit comments

Comments
 (0)