diff --git a/.github/workflows/daily-smoke-tests.yml b/.github/workflows/daily-smoke-tests.yml index 67cbf9418..097972364 100644 --- a/.github/workflows/daily-smoke-tests.yml +++ b/.github/workflows/daily-smoke-tests.yml @@ -4,9 +4,9 @@ on: schedule: # Cron syntax is "minute[0-59] hour[0-23] date[1-31] month[1-12] day[0-6]". '*' is 'any value,' and multiple values # can be specified with comma-separated lists. All times are UTC. - # So this expression means "run at 13:30 UTC every day". This time was chosen because it corresponds to - # 8:30AM CDT, meaning that any issues will be surfaced before the start of business. - - cron: "30 13 * * *" + # So this expression means "run at 03:30 UTC every day". This time was chosen because it corresponds to + # 9:00AM IST, meaning that any issues will be surfaced before the start of business in India. + - cron: "30 3 * * *" jobs: smoke-test: # We run the daily smoke tests against 'dev' to validate that the code currently in development is still valid diff --git a/.github/workflows/heartbeat-tests.yml b/.github/workflows/heartbeat-tests.yml index 3c9c2a34f..6081f1885 100644 --- a/.github/workflows/heartbeat-tests.yml +++ b/.github/workflows/heartbeat-tests.yml @@ -4,10 +4,10 @@ on: schedule: # Cron syntax is "minute[0-59] hour[0-23] date[1-31] month[1-12] day[0-6]". '*' is 'any value', and multiple values # can be specified with comma-separated lists. All times are UTC. - # So this expression means "run at 45 minutes past 1, 5, and 9 AM/PM UTC". The hours were chosen so that - # the jobs run only close to business hours of Central Time. + # So this expression means "run at 30 minutes past 3, 6, and 10 UTC" (which is 09:00, 12:00, and 16:00 IST). The hours were chosen so that + # the jobs run during daytime hours of India Standard Time (IST). # Days were chosen to run only from Monday through Friday. - - cron: "45 13,17,21 * * 1,2,3,4,5" + - cron: "30 3,6,10 * * 1,2,3,4,5" jobs: production-heartbeat: diff --git a/package-lock.json b/package-lock.json index 7b6f9bee3..d825e7952 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@salesforce/plugin-code-analyzer", - "version": "5.7.0", + "version": "5.7.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@salesforce/plugin-code-analyzer", - "version": "5.7.0", + "version": "5.7.1", "license": "BSD-3-Clause", "dependencies": { "@oclif/core": "^4.8.0", @@ -14,7 +14,7 @@ "@salesforce/code-analyzer-core": "0.40.0", "@salesforce/code-analyzer-engine-api": "0.32.0", "@salesforce/code-analyzer-eslint-engine": "0.37.1", - "@salesforce/code-analyzer-flow-engine": "0.31.0", + "@salesforce/code-analyzer-flow-engine": "0.31.1", "@salesforce/code-analyzer-pmd-engine": "0.33.0", "@salesforce/code-analyzer-regex-engine": "0.30.0", "@salesforce/code-analyzer-retirejs-engine": "0.29.0", @@ -5279,9 +5279,9 @@ } }, "node_modules/@salesforce/code-analyzer-flow-engine": { - "version": "0.31.0", - "resolved": "https://registry.npmjs.org/@salesforce/code-analyzer-flow-engine/-/code-analyzer-flow-engine-0.31.0.tgz", - "integrity": "sha512-u8MwFTx629bw4yTtgjKWKk3InNI1816JSCHGXW553AA1TYhk/QScI4UuLI/C/YxA+fwVGL+ovZH4XFF0Ip7kgw==", + "version": "0.31.1", + "resolved": "https://registry.npmjs.org/@salesforce/code-analyzer-flow-engine/-/code-analyzer-flow-engine-0.31.1.tgz", + "integrity": "sha512-uyYRvJBgMeR6SkjBJ9z5xXvMCCH0giDoLyJERu6t9NIfrDpsXrFn7sW1/UbY5jF9DVciN1y96CIB0RwNcV8NJw==", "license": "BSD-3-Clause", "dependencies": { "@salesforce/code-analyzer-engine-api": "0.32.0", diff --git a/package.json b/package.json index e18249a5f..a4dba8e6a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/plugin-code-analyzer", "description": "Salesforce Code Analyzer is a unified tool to help Salesforce developers analyze their source code for security vulnerabilities, performance issues, best practices, and more.", - "version": "5.7.0", + "version": "5.7.1", "author": "Salesforce Code Analyzer Team", "bugs": "https://github.com/forcedotcom/code-analyzer/issues", "type": "module", @@ -11,7 +11,7 @@ "@salesforce/code-analyzer-core": "0.40.0", "@salesforce/code-analyzer-engine-api": "0.32.0", "@salesforce/code-analyzer-eslint-engine": "0.37.1", - "@salesforce/code-analyzer-flow-engine": "0.31.0", + "@salesforce/code-analyzer-flow-engine": "0.31.1", "@salesforce/code-analyzer-pmd-engine": "0.33.0", "@salesforce/code-analyzer-regex-engine": "0.30.0", "@salesforce/code-analyzer-retirejs-engine": "0.29.0",