Skip to content

Commit

Permalink
chore: bump runtimeId to latest (2024.09) in examples (#1011)
Browse files Browse the repository at this point in the history
  • Loading branch information
sorccu authored Jan 20, 2025
1 parent 33f3c08 commit 0173d7b
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion examples/advanced-project-js/checkly.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const config = defineConfig({
/** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime.
* See https://www.checklyhq.com/docs/cli/npm-packages/
*/
runtimeId: '2024.02',
runtimeId: '2024.09',
/* Failed check runs will be retried before triggering alerts */
retryStrategy: RetryStrategyBuilder.fixedStrategy({ baseBackoffSeconds: 60, maxRetries: 4, sameRegion: true }),
/* A glob pattern that matches the Checks inside your repo, see https://www.checklyhq.com/docs/cli/using-check-test-match/ */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const alertChannels = [smsChannel, emailChannel]
// We can define multiple checks in a single *.check.js file.
new MultiStepCheck('spacex-multistep-check', {
name: 'SpaceX MS',
runtimeId: '2024.02',
runtimeId: '2024.09',
alertChannels,
code: {
entrypoint: path.join(__dirname, 'spacex-requests.spec.js')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const websiteGroup = new CheckGroup('website-check-group-1', {
name: 'Website Group',
activated: true,
muted: false,
runtimeId: '2024.02',
runtimeId: '2024.09',
locations: ['us-east-1', 'eu-west-1'],
tags: ['mac', 'group'],
environmentVariables: [],
Expand Down
2 changes: 1 addition & 1 deletion examples/advanced-project/checkly.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const config = defineConfig({
/** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime.
* See https://www.checklyhq.com/docs/cli/npm-packages/
*/
runtimeId: '2024.02',
runtimeId: '2024.09',
/* Failed check runs will be retried before triggering alerts */
retryStrategy: RetryStrategyBuilder.fixedStrategy({ baseBackoffSeconds: 60, maxRetries: 4, sameRegion: true }),
/* All checks will have this alert escalation policy defined */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const alertChannels = [smsChannel, emailChannel]
// We can define multiple checks in a single *.check.ts file.
new MultiStepCheck('spacex-multistep-check', {
name: 'SpaceX MS',
runtimeId: '2024.02',
runtimeId: '2024.09',
alertChannels,
code: {
entrypoint: path.join(__dirname, 'spacex-requests.spec.ts')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const websiteGroup = new CheckGroup('website-check-group-1', {
name: 'Website Group',
activated: true,
muted: false,
runtimeId: '2024.02',
runtimeId: '2024.09',
locations: ['us-east-1', 'eu-west-1'],
tags: ['mac', 'group'],
environmentVariables: [],
Expand Down
2 changes: 1 addition & 1 deletion examples/boilerplate-project-js/checkly.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const config = defineConfig({
/** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime.
* See https://www.checklyhq.com/docs/cli/npm-packages/
*/
runtimeId: '2024.02',
runtimeId: '2024.09',
/* A glob pattern that matches the Checks inside your repo, see https://www.checklyhq.com/docs/cli/using-check-test-match/ */
checkMatch: '**/__checks__/**/*.check.js',
/* Global configuration option for Playwright-powered checks. See https://www.checklyhq.com/docs/browser-checks/playwright-test/#global-configuration */
Expand Down
2 changes: 1 addition & 1 deletion examples/boilerplate-project/checkly.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const config = defineConfig({
/** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime.
* See https://www.checklyhq.com/docs/cli/npm-packages/
*/
runtimeId: '2024.02',
runtimeId: '2024.09',
/* A glob pattern that matches the Checks inside your repo, see https://www.checklyhq.com/docs/cli/using-check-test-match/ */
checkMatch: '**/__checks__/**/*.check.ts',
/* Global configuration option for Playwright-powered checks. See https://www.checklyhq.com/docs/browser-checks/playwright-test/#global-configuration */
Expand Down

0 comments on commit 0173d7b

Please sign in to comment.