Skip to content

Commit c03101f

Browse files
authored
Merge pull request #196 from OffchainLabs/bold-merge-npm
chore: ignore npm audit issues and bump packages
2 parents 45453ca + 7a656de commit c03101f

File tree

5 files changed

+1217
-2430
lines changed

5 files changed

+1217
-2430
lines changed

.github/workflows/audit-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
node-version: [16, 18, 20]
18+
node-version: [18, 20]
1919
steps:
2020
- name: Checkout
2121
uses: actions/checkout@v3

.github/workflows/contract-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup node/yarn
2727
uses: actions/setup-node@v3
2828
with:
29-
node-version: 16
29+
node-version: 18
3030
cache: 'yarn'
3131
cache-dependency-path: '**/yarn.lock'
3232

@@ -153,7 +153,7 @@ jobs:
153153
# - name: Setup node/yarn
154154
# uses: actions/setup-node@v3
155155
# with:
156-
# node-version: 16
156+
# node-version: 18
157157
# cache: 'yarn'
158158
# cache-dependency-path: '**/yarn.lock'
159159

@@ -184,7 +184,7 @@ jobs:
184184
# - name: Setup node/yarn
185185
# uses: actions/setup-node@v3
186186
# with:
187-
# node-version: 16
187+
# node-version: 18
188188
# cache: 'yarn'
189189
# cache-dependency-path: '**/yarn.lock'
190190

@@ -213,7 +213,7 @@ jobs:
213213
- name: Setup node/yarn
214214
uses: actions/setup-node@v3
215215
with:
216-
node-version: 16
216+
node-version: 18
217217
cache: "yarn"
218218
cache-dependency-path: "**/yarn.lock"
219219

audit-ci.jsonc

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,14 @@
4747
// Exposure of sensitive information in follow-redirects
4848
"GHSA-74fj-2j2h-c42q",
4949
// Open Zeppelin: Base64 encoding may read from potentially dirty memory
50-
"GHSA-9vx6-7xxf-x967"
50+
"GHSA-9vx6-7xxf-x967",
51+
// semver vulnerable to Regular Expression Denial of Service
52+
"GHSA-c2qf-rxjj-qqgw",
53+
// follow-redirects' Proxy-Authorization header kept across hosts
54+
"GHSA-cxjh-pqwp-8mfp",
55+
// Prototype Pollution in async
56+
"GHSA-fwr7-v2mv-hh25",
57+
// ws affected by a DoS when handling a request with many HTTP headers
58+
"GHSA-3h5v-q93c-6h6q"
5159
]
5260
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@
8585
"ethereum-waffle": "^4.0.10",
8686
"ethers": "^5.5.4",
8787
"hardhat": "^2.17.2",
88+
"hardhat-contract-sizer": "^2.10.0",
8889
"hardhat-deploy": "^0.11.37",
8990
"hardhat-gas-reporter": "^1.0.9",
9091
"hardhat-ignore-warnings": "^0.2.9",
91-
"hardhat-contract-sizer": "^2.10.0",
9292
"postinstall-postinstall": "^2.1.0",
9393
"prettier": "^2.5.1",
9494
"prettier-plugin-solidity": "^1.0.0-beta.19",

0 commit comments

Comments
 (0)