Skip to content

Commit e937be3

Browse files
chore(deps-dev): bump @types/node from 22.8.0 to 22.8.1 (#751)
Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Jeromy Cannon <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jeromy Cannon <[email protected]>
1 parent 22653a3 commit e937be3

16 files changed

+40
-78
lines changed

.github/workflows/flow-build-application.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
- { name: "Node Delete - Separate commands", npm-test-script: "test-${{ needs.env-vars.outputs.e2e-node-delete-separate-commands-test-subdir }}", coverage-subdirectory: "${{ needs.env-vars.outputs.e2e-node-delete-separate-commands-test-subdir }}", coverage-report-name: "${{ needs.env-vars.outputs.e2e-node-delete-separate-commands-coverage-report }}" }
9292
- { name: "Node Upgrade", npm-test-script: "test-${{ needs.env-vars.outputs.e2e-node-upgrade-test-subdir }}", coverage-subdirectory: "${{ needs.env-vars.outputs.e2e-node-upgrade-test-subdir }}", coverage-report-name: "${{ needs.env-vars.outputs.e2e-node-upgrade-coverage-report }}" }
9393
- { name: "Relay", npm-test-script: "test-${{ needs.env-vars.outputs.e2e-relay-test-subdir }}", coverage-subdirectory: "${{ needs.env-vars.outputs.e2e-relay-test-subdir }}", coverage-report-name: "${{ needs.env-vars.outputs.e2e-relay-coverage-report }}" }
94-
max-parallel: 4
94+
max-parallel: 3
9595
with:
9696
custom-job-label: ${{ matrix.e2e-test-type.name }}
9797
npm-test-script: ${{ matrix.e2e-test-type.npm-test-script }}

.github/workflows/flow-deploy-release-artifact.yaml

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,10 @@ jobs:
5454
with:
5555
fetch-depth: 0
5656

57-
- name: Setup Node with Retry
58-
uses: Wandalen/wretry.action@6feedb7dedadeb826de0f45ff482b53b379a7844 # v3.5.0
57+
- name: Setup Node
58+
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
5959
with:
60-
action: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
61-
with: |
62-
node-version: 20.14.0
63-
cache: npm
64-
attempt_limit: 3
65-
attempt_delay: 5000
60+
node-version: 20.18.0
6661

6762
- name: Install Semantic Release
6863
run: |
@@ -143,15 +138,10 @@ jobs:
143138
git_commit_gpgsign: true
144139
git_tag_gpgsign: false
145140

146-
- name: Setup Node with Retry
147-
uses: Wandalen/wretry.action@6feedb7dedadeb826de0f45ff482b53b379a7844 # v3.5.0
141+
- name: Setup Node
142+
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
148143
with:
149-
action: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
150-
with: |
151-
node-version: 20.14.0
152-
cache: npm
153-
attempt_limit: 3
154-
attempt_delay: 5000
144+
node-version: 20.18.0
155145

156146
- name: Build Production Distribution
157147
run: |

.github/workflows/flow-hugo-publish.yaml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,10 @@ jobs:
7676
with:
7777
fetch-depth: 0
7878

79-
- name: Setup Node with Retry
80-
uses: Wandalen/wretry.action@6feedb7dedadeb826de0f45ff482b53b379a7844 # v3.5.0
79+
- name: Setup Node
80+
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
8181
with:
82-
action: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
83-
with: |
84-
node-version: 20.14.0
85-
cache: npm
86-
attempt_limit: 3
87-
attempt_delay: 5000
82+
node-version: 20.18.0
8883

8984
- name: Setup Pages
9085
id: pages

.github/workflows/flow-pull-request-checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
- { name: "Node Delete - Separate commands", npm-test-script: "test-${{ needs.env-vars.outputs.e2e-node-delete-separate-commands-test-subdir }}", coverage-subdirectory: "${{ needs.env-vars.outputs.e2e-node-delete-separate-commands-test-subdir }}", coverage-report-name: "${{ needs.env-vars.outputs.e2e-node-delete-separate-commands-coverage-report }}" }
9191
- { name: "Node Upgrade", npm-test-script: "test-${{ needs.env-vars.outputs.e2e-node-upgrade-test-subdir }}", coverage-subdirectory: "${{ needs.env-vars.outputs.e2e-node-upgrade-test-subdir }}", coverage-report-name: "${{ needs.env-vars.outputs.e2e-node-upgrade-coverage-report }}" }
9292
- { name: "Relay", npm-test-script: "test-${{ needs.env-vars.outputs.e2e-relay-test-subdir }}", coverage-subdirectory: "${{ needs.env-vars.outputs.e2e-relay-test-subdir }}", coverage-report-name: "${{ needs.env-vars.outputs.e2e-relay-coverage-report }}" }
93-
max-parallel: 4
93+
max-parallel: 3
9494
with:
9595
custom-job-label: ${{ matrix.e2e-test-type.name }}
9696
npm-test-script: ${{ matrix.e2e-test-type.npm-test-script }}

.github/workflows/templates/template.flow-build-application.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
matrix:
7777
e2e-test-type:
7878
# {AUTOGENERATE-E2E-TEST-JOBS}
79-
max-parallel: 4
79+
max-parallel: 3
8080
with:
8181
custom-job-label: ${{ matrix.e2e-test-type.name }}
8282
npm-test-script: ${{ matrix.e2e-test-type.npm-test-script }}

.github/workflows/templates/template.flow-pull-request-checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
matrix:
7676
e2e-test-type:
7777
# {AUTOGENERATE-E2E-TEST-JOBS}
78-
max-parallel: 4
78+
max-parallel: 3
7979
with:
8080
custom-job-label: ${{ matrix.e2e-test-type.name }}
8181
npm-test-script: ${{ matrix.e2e-test-type.npm-test-script }}

.github/workflows/templates/template.zxc-code-analysis.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ on:
4949
description: "NodeJS Version:"
5050
type: string
5151
required: false
52-
default: "20.14.0"
52+
default: "20.18.0"
5353
custom-job-label:
5454
description: "Custom Job Label:"
5555
type: string
@@ -90,15 +90,10 @@ jobs:
9090
ref: ${{ github.event.workflow_run.head_branch }}
9191
fetch-depth: ${{ inputs.enable-sonar-analysis && '0' || '' }}
9292

93-
- name: Setup Node with Retry
94-
uses: Wandalen/wretry.action@6feedb7dedadeb826de0f45ff482b53b379a7844 # v3.5.0
93+
- name: Setup Node
94+
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
9595
with:
96-
action: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
97-
with: |
98-
node-version: ${{ inputs.node-version }}
99-
cache: npm
100-
attempt_limit: 3
101-
attempt_delay: 5000
96+
node-version: ${{ inputs.node-version }}
10297

10398
- name: Download Unit Test Coverage Report
10499
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8

.github/workflows/zxc-code-analysis.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ on:
4949
description: "NodeJS Version:"
5050
type: string
5151
required: false
52-
default: "20.14.0"
52+
default: "20.18.0"
5353
custom-job-label:
5454
description: "Custom Job Label:"
5555
type: string
@@ -253,15 +253,10 @@ jobs:
253253
ref: ${{ github.event.workflow_run.head_branch }}
254254
fetch-depth: ${{ inputs.enable-sonar-analysis && '0' || '' }}
255255

256-
- name: Setup Node with Retry
257-
uses: Wandalen/wretry.action@6feedb7dedadeb826de0f45ff482b53b379a7844 # v3.5.0
256+
- name: Setup Node
257+
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
258258
with:
259-
action: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
260-
with: |
261-
node-version: ${{ inputs.node-version }}
262-
cache: npm
263-
attempt_limit: 3
264-
attempt_delay: 5000
259+
node-version: ${{ inputs.node-version }}
265260

266261
- name: Download Unit Test Coverage Report
267262
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8

.github/workflows/zxc-code-style.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727
description: "NodeJS Version:"
2828
type: string
2929
required: false
30-
default: "20.14.0"
30+
default: "20.18.0"
3131
custom-job-label:
3232
description: "Custom Job Label:"
3333
type: string
@@ -59,15 +59,10 @@ jobs:
5959
- name: Checkout Code
6060
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
6161

62-
- name: Setup Node with Retry
63-
uses: Wandalen/wretry.action@6feedb7dedadeb826de0f45ff482b53b379a7844 # v3.5.0
62+
- name: Setup Node
63+
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
6464
with:
65-
action: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
66-
with: |
67-
node-version: ${{ inputs.node-version }}
68-
cache: npm
69-
attempt_limit: 3
70-
attempt_delay: 5000
65+
node-version: ${{ inputs.node-version }}
7166

7267
- name: Install Dependencies
7368
id: npm-deps

.github/workflows/zxc-e2e-test.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727
description: "NodeJS Version:"
2828
type: string
2929
required: false
30-
default: "20.14.0"
30+
default: "20.18.0"
3131
custom-job-label:
3232
description: "Custom Job Label:"
3333
type: string
@@ -119,15 +119,10 @@ jobs:
119119
# sudo cgclassify -g cpu,memory:${AGENT_GROUP_NAME} $(pgrep 'Runner.Worker' | tr '\n' ' ')
120120
# echo "::endgroup::"
121121

122-
- name: Setup Node with Retry
123-
uses: Wandalen/wretry.action@6feedb7dedadeb826de0f45ff482b53b379a7844 # v3.5.0
122+
- name: Setup Node
123+
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
124124
with:
125-
action: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
126-
with: |
127-
node-version: ${{ inputs.node-version }}
128-
cache: npm
129-
attempt_limit: 3
130-
attempt_delay: 5000
125+
node-version: ${{ inputs.node-version }}
131126

132127
- name: Install wget
133128
run: |

.github/workflows/zxc-unit-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727
description: "NodeJS Version:"
2828
type: string
2929
required: false
30-
default: "20.14.0"
30+
default: "20.18.0"
3131
custom-job-label:
3232
description: "Custom Job Label:"
3333
type: string

.github/workflows/zxc-update-readme.yaml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,10 @@ jobs:
6666
fetch-depth: 0
6767
token: ${{ secrets.GH_ACCESS_TOKEN }}
6868

69-
- name: Setup Node with Retry
70-
uses: Wandalen/wretry.action@6feedb7dedadeb826de0f45ff482b53b379a7844 # v3.5.0
69+
- name: Setup Node
70+
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
7171
with:
72-
action: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
73-
with: |
74-
node-version: 20.14.0
75-
cache: npm
76-
attempt_limit: 3
77-
attempt_delay: 5000
72+
node-version: 20.18.0
7873

7974
- name: Install wget
8075
run: |

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ An opinionated CLI tool to deploy and manage standalone test networks.
3434
|--------------|---------------------------|------------|-----------|----------|------------|------------|---------|------------|-------------------------|--------------|
3535
| 0.29.0 | >= 20.14.0 (lts/hydrogen) | >= v1.29.1 | v0.30.0 | v0.53.0+ | >= v1.27.3 | >= v1.27.3 | v3.14.2 | >= v0.27.4 | Memory >= 8GB, CPU >= 4 | >= 21.0.1+12 |
3636
| 0.30.0 | >= 20.14.0 (lts/hydrogen) | >= v1.29.1 | v0.30.0 | v0.54.0+ | >= v1.27.3 | >= v1.27.3 | v3.14.2 | >= v0.27.4 | Memory >= 8GB, CPU >= 4 | >= 21.0.1+12 |
37+
| 0.31.4 | >= 20.18.0 (lts/iron) | >= v1.29.1 | v0.31.4 | v0.54.0+ | >= v1.27.3 | >= v1.27.3 | v3.14.2 | >= v0.27.4 | Memory >= 8GB, CPU >= 4 | >= 21.0.1+12 |
3738

3839
## Setup
3940

README.md.template

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ An opinionated CLI tool to deploy and manage standalone test networks.
3434
|--------------|---------------------------|------------|-----------|----------|------------|------------|---------|------------|-------------------------|--------------|
3535
| 0.29.0 | >= 20.14.0 (lts/hydrogen) | >= v1.29.1 | v0.30.0 | v0.53.0+ | >= v1.27.3 | >= v1.27.3 | v3.14.2 | >= v0.27.4 | Memory >= 8GB, CPU >= 4 | >= 21.0.1+12 |
3636
| 0.30.0 | >= 20.14.0 (lts/hydrogen) | >= v1.29.1 | v0.30.0 | v0.54.0+ | >= v1.27.3 | >= v1.27.3 | v3.14.2 | >= v0.27.4 | Memory >= 8GB, CPU >= 4 | >= 21.0.1+12 |
37+
| 0.31.4 | >= 20.18.0 (lts/iron) | >= v1.29.1 | v0.31.4 | v0.54.0+ | >= v1.27.3 | >= v1.27.3 | v3.14.2 | >= v0.27.4 | Memory >= 8GB, CPU >= 4 | >= 21.0.1+12 |
3738

3839
## Setup
3940

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"@types/ip": "^1.1.3",
8989
"@types/mocha": "^10.0.9",
9090
"@types/mocha-each": "^2.0.4",
91-
"@types/node": "^22.8.0",
91+
"@types/node": "^22.8.1",
9292
"@types/semver": "^7.5.8",
9393
"@types/sinon": "^17.0.3",
9494
"@types/sinon-chai": "^4.0.0",

0 commit comments

Comments
 (0)