Skip to content

Commit f20018f

Browse files
committed
chore(CI): add security revert flag for CVE-2023-46809
1 parent c1e61d2 commit f20018f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
CI:
88
strategy:
99
matrix:
10-
node: [16, 18.3.0, 20.4.0]
10+
node: [16, 18, 20]
1111
fail-fast: false
1212
runs-on: codebuild-AWS-ESDK-JS-Release-${{ github.run_id }}-${{ github.run_attempt }}-ubuntu-5.0-large
1313
permissions:
@@ -31,20 +31,20 @@ jobs:
3131
role-session-name: JavaScriptTests
3232
- name: Test Node ${{matrix.node}}
3333
env:
34-
NODE_OPTIONS: "--max-old-space-size=4096"
34+
NODE_OPTIONS: "--max-old-space-size=4096 --security-revert=CVE-2023-46809"
3535
run: |
3636
npm ci
3737
npm run build
3838
npm run coverage-node
3939
- name: Test compliance
4040
env:
41-
NODE_OPTIONS: "--max-old-space-size=4096"
41+
NODE_OPTIONS: "--max-old-space-size=4096 --security-revert=CVE-2023-46809"
4242
run: |
4343
npm run lint
4444
npm run test_conditions
4545
- name: Run Test Vectors Node ${{matrix.node}}
4646
env:
47-
NODE_OPTIONS: "--max-old-space-size=4096"
47+
NODE_OPTIONS: "--max-old-space-size=4096 --security-revert=CVE-2023-46809"
4848
NPM_CONFIG_UNSAFE_PERM: true
4949
PUBLISH_LOCAL: true
5050
run: |
@@ -53,7 +53,7 @@ jobs:
5353
npm run verdaccio-node-encrypt
5454
- name: Run Test Vectors Browser node ${{matrix.node}}
5555
env:
56-
NODE_OPTIONS: "--max-old-space-size=4096"
56+
NODE_OPTIONS: "--max-old-space-size=4096 --security-revert=CVE-2023-46809"
5757
NPM_CONFIG_UNSAFE_PERM: true
5858
PUBLISH_LOCAL: true
5959
run: |

0 commit comments

Comments
 (0)