diff --git a/.github/actions/setup-server/action.yml b/.github/actions/setup-server/action.yml index 806d266a21..3b494931f0 100644 --- a/.github/actions/setup-server/action.yml +++ b/.github/actions/setup-server/action.yml @@ -5,7 +5,7 @@ inputs: node-version: description: "Node version" required: false - default: "16.10.0" + default: "16.20.2" cache-extension: description: "Extension for fetching cached dependencies" required: true diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 887bbfdc86..89f7c57cc5 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -17,7 +17,7 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v3 with: - node-version: "16.10.0" + node-version: "16.20.2" cache: "yarn" - name: Assert changed @@ -48,7 +48,7 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v3 with: - node-version: "16.10.0" + node-version: "16.20.2" cache: "yarn" - name: Assert changed @@ -171,7 +171,7 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v3 with: - node-version: "16.10.0" + node-version: "16.20.2" cache: "yarn" - name: Install dependencies @@ -223,7 +223,7 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v3 with: - node-version: "16.10.0" + node-version: "16.20.2" cache: "yarn" - name: Install dependencies @@ -274,7 +274,7 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v3 with: - node-version: "16.10.0" + node-version: "16.20.2" cache: "yarn" - name: Install dependencies diff --git a/.github/workflows/codegen-test.yml b/.github/workflows/codegen-test.yml index 9f0a591317..81afbb1f04 100644 --- a/.github/workflows/codegen-test.yml +++ b/.github/workflows/codegen-test.yml @@ -25,7 +25,7 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v3 with: - node-version: "16.10.0" + node-version: "16.20.2" cache: "yarn" - name: Install dependencies diff --git a/.github/workflows/docs-freshness-check.yml b/.github/workflows/docs-freshness-check.yml index bcb67e94a4..8ad7bcfa58 100644 --- a/.github/workflows/docs-freshness-check.yml +++ b/.github/workflows/docs-freshness-check.yml @@ -1,8 +1,8 @@ # Checks for outdated documentation content and sends notification about it name: Docs Freshness Check -on: +on: schedule: - - cron: '0 0 1 * *' # once a month + - cron: "0 0 1 * *" # once a month jobs: freshness-check: @@ -24,7 +24,7 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v3 with: - node-version: "16.10.0" + node-version: "16.20.2" cache: "yarn" - name: Install dependencies @@ -33,4 +33,4 @@ jobs: extension: docs-freshness-check - name: Perform Freshness Check - run: yarn check:freshness \ No newline at end of file + run: yarn check:freshness diff --git a/.github/workflows/docs-new-announcement.yml b/.github/workflows/docs-new-announcement.yml index 3415bb3d22..9db534e4c7 100644 --- a/.github/workflows/docs-new-announcement.yml +++ b/.github/workflows/docs-new-announcement.yml @@ -1,5 +1,5 @@ name: Generate Docs Release Announcement Bar -on: +on: release: types: [published] @@ -22,7 +22,7 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v3 with: - node-version: "16.10.0" + node-version: "16.20.2" cache: "yarn" - name: Install dependencies @@ -39,10 +39,10 @@ jobs: - name: Create Pull Request uses: peter-evans/create-pull-request@v4 with: - commit-message: 'chore(docs): Generated Docs Announcement Bar (automated)' - base: 'develop' - title: 'chore(docs): Generated Docs Announcement Bar (automated)' - labels: 'type: chore' + commit-message: "chore(docs): Generated Docs Announcement Bar (automated)" + base: "develop" + title: "chore(docs): Generated Docs Announcement Bar (automated)" + labels: "type: chore" add-paths: www/docs/** - branch: 'chore/generate-announcement' - branch-suffix: 'timestamp' \ No newline at end of file + branch: "chore/generate-announcement" + branch-suffix: "timestamp" diff --git a/.github/workflows/docs-remove-announcement.yml b/.github/workflows/docs-remove-announcement.yml index 0ea1e0de73..62641d9811 100644 --- a/.github/workflows/docs-remove-announcement.yml +++ b/.github/workflows/docs-remove-announcement.yml @@ -1,8 +1,8 @@ # Checks if the announcement bar info was last edited more than 6 days ago, and if so removes it name: Remove Docs Release Announcement Bar -on: +on: schedule: - - cron: '0 0 * * *' + - cron: "0 0 * * *" jobs: remove-announcement: @@ -23,7 +23,7 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v3 with: - node-version: "16.10.0" + node-version: "16.20.2" cache: "yarn" - name: Install dependencies @@ -37,10 +37,10 @@ jobs: - name: Create Pull Request uses: peter-evans/create-pull-request@v4 with: - commit-message: 'chore(docs): Removed Docs Announcement Bar (automated)' - base: 'develop' - title: 'chore(docs): Removed Docs Announcement Bar (automated)' - labels: 'type: chore' + commit-message: "chore(docs): Removed Docs Announcement Bar (automated)" + base: "develop" + title: "chore(docs): Removed Docs Announcement Bar (automated)" + labels: "type: chore" add-paths: www/docs/** - branch: 'chore/remove-announcement' - branch-suffix: 'timestamp' \ No newline at end of file + branch: "chore/remove-announcement" + branch-suffix: "timestamp" diff --git a/.github/workflows/generate-api-reference.yml b/.github/workflows/generate-api-reference.yml index 1f6f24d4c3..64366b445b 100644 --- a/.github/workflows/generate-api-reference.yml +++ b/.github/workflows/generate-api-reference.yml @@ -1,5 +1,5 @@ name: Generate API Reference -on: +on: workflow_dispatch: release: types: [published] @@ -22,7 +22,7 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v3 with: - node-version: "16.10.0" + node-version: "16.20.2" cache: "yarn" - name: Install dependencies @@ -39,10 +39,10 @@ jobs: - name: Create Pull Request uses: peter-evans/create-pull-request@v4 with: - commit-message: 'chore(docs): Generated API Reference' - base: 'develop' - title: 'chore(docs): Updated API Reference' - labels: 'type: chore' + commit-message: "chore(docs): Generated API Reference" + base: "develop" + title: "chore(docs): Updated API Reference" + labels: "type: chore" add-paths: www/api-reference/specs - branch: 'chore/generate-api-ref' - branch-suffix: 'timestamp' + branch: "chore/generate-api-ref" + branch-suffix: "timestamp" diff --git a/.github/workflows/generate-entity-reference.yml b/.github/workflows/generate-entity-reference.yml index 3578107c3b..8eed3da373 100644 --- a/.github/workflows/generate-entity-reference.yml +++ b/.github/workflows/generate-entity-reference.yml @@ -1,5 +1,5 @@ name: Generate Entity Reference -on: +on: workflow_dispatch: release: types: [published] @@ -21,7 +21,7 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v3 with: - node-version: "16.10.0" + node-version: "16.20.2" cache: "yarn" - name: Install dependencies @@ -38,10 +38,10 @@ jobs: - name: Create Pull Request uses: peter-evans/create-pull-request@v4 with: - commit-message: 'chore(docs): Generated Entities Reference (automated)' - base: 'develop' - title: 'chore(docs): Generated Entities Reference (automated)' - labels: 'type: chore' + commit-message: "chore(docs): Generated Entities Reference (automated)" + base: "develop" + title: "chore(docs): Generated Entities Reference (automated)" + labels: "type: chore" add-paths: www/docs/content/references/entities/** - branch: 'chore/generate-entities' - branch-suffix: 'timestamp' + branch: "chore/generate-entities" + branch-suffix: "timestamp" diff --git a/.github/workflows/generate-js-reference.yml b/.github/workflows/generate-js-reference.yml index 1fa3ea36a1..b9580c3cf5 100644 --- a/.github/workflows/generate-js-reference.yml +++ b/.github/workflows/generate-js-reference.yml @@ -1,5 +1,5 @@ name: Generate JS Client Reference -on: +on: workflow_dispatch: release: types: [published] @@ -21,7 +21,7 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v3 with: - node-version: "16.10.0" + node-version: "16.20.2" cache: "yarn" - name: Install dependencies @@ -38,10 +38,10 @@ jobs: - name: Create Pull Request uses: peter-evans/create-pull-request@v4 with: - commit-message: 'chore(docs): Generated JS Client Reference (automated)' - base: 'develop' - title: 'chore(docs): Generated JS Client Reference' - labels: 'type: chore' + commit-message: "chore(docs): Generated JS Client Reference (automated)" + base: "develop" + title: "chore(docs): Generated JS Client Reference" + labels: "type: chore" add-paths: www/docs/content/references/js-client/** - branch: 'chore/generate-js-client' - branch-suffix: 'timestamp' + branch: "chore/generate-js-client" + branch-suffix: "timestamp" diff --git a/.github/workflows/generate-reference.yml b/.github/workflows/generate-reference.yml index 3552ac5ab3..fab6bee271 100644 --- a/.github/workflows/generate-reference.yml +++ b/.github/workflows/generate-reference.yml @@ -1,5 +1,5 @@ name: Generate Services Reference -on: +on: workflow_dispatch: release: types: [published] @@ -21,7 +21,7 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v3 with: - node-version: "16.10.0" + node-version: "16.20.2" cache: "yarn" - name: Install dependencies @@ -38,10 +38,10 @@ jobs: - name: Create Pull Request uses: peter-evans/create-pull-request@v4 with: - commit-message: 'chore(docs): Generated Services Reference (automated)' - base: 'develop' - title: 'chore(docs): Generated Services Reference (automated)' - labels: 'type: chore' + commit-message: "chore(docs): Generated Services Reference (automated)" + base: "develop" + title: "chore(docs): Generated Services Reference (automated)" + labels: "type: chore" add-paths: www/docs/content/references/services/** - branch: 'chore/generate-services' - branch-suffix: 'timestamp' + branch: "chore/generate-services" + branch-suffix: "timestamp" diff --git a/.github/workflows/oas-test.yml b/.github/workflows/oas-test.yml index f5f253bbf3..ec4e1a17eb 100644 --- a/.github/workflows/oas-test.yml +++ b/.github/workflows/oas-test.yml @@ -22,7 +22,7 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v3 with: - node-version: "16.10.0" + node-version: "16.20.2" cache: "yarn" - name: Install dependencies diff --git a/.github/workflows/release-notifications.yml b/.github/workflows/release-notifications.yml index 1c8b8da7b0..3c67789075 100644 --- a/.github/workflows/release-notifications.yml +++ b/.github/workflows/release-notifications.yml @@ -20,9 +20,9 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v3 with: - node-version: "16.10.0" + node-version: "16.20.2" cache: "yarn" - + - name: Post to Slack channel id: slack uses: slackapi/slack-github-action@v1.23.0