Commit 9e2026e 1 parent 66634bc commit 9e2026e Copy full SHA for 9e2026e
File tree 4 files changed +134
-91
lines changed
packages/solidity-contracts
4 files changed +134
-91
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,16 @@ concurrency:
13
13
cancel-in-progress : true
14
14
15
15
jobs :
16
+ audit-deps :
17
+ name : Audit Dependencies
18
+ runs-on : ubuntu-latest
19
+ steps :
20
+ - uses : actions/checkout@v3
21
+ - uses : FuelLabs/github-actions/setups/node@master
22
+ - run : pnpm audit --prod
23
+
16
24
check-packages-changed :
25
+ needs : audit-deps
17
26
name : Check if packages have change
18
27
runs-on : ubuntu-latest
19
28
outputs :
29
38
30
39
changesets :
31
40
name : Changeset Checks
32
- needs : check-packages-changed
41
+ needs : [audit-deps, check-packages-changed]
33
42
if : ${{ github.head_ref != 'changeset-release/main' && needs.check-packages-changed.outputs.changed == 'true' }}
34
43
runs-on : ubuntu-latest
35
44
steps :
42
51
43
52
validate :
44
53
runs-on : buildjet-4vcpu-ubuntu-2204
54
+ needs : audit-deps
45
55
steps :
46
56
- uses : actions/checkout@v3
47
57
- uses : FuelLabs/github-actions/setups/node@master
Original file line number Diff line number Diff line change 40
40
"devDependencies" : {
41
41
"@changesets/cli" : " ^2.26.2" ,
42
42
"@fuel-ts/forc" : " 0.71.1"
43
+ },
44
+ "pnpm" : {
45
+ "overrides" : {
46
+ "graphql" : " >=16.8.1" ,
47
+ "semver" : " >=5.7.2" ,
48
+ "axios" : " >=1.6.0" ,
49
+ "undici" : " >=5.26.2" ,
50
+ "get-func-name" : " >=2.0.1"
51
+ }
43
52
}
44
53
}
Original file line number Diff line number Diff line change 42
42
"@ethersproject/bytes" : " ^5.7.0" ,
43
43
"@ethersproject/providers" : " ^5.7.0" ,
44
44
"@fuel-contracts/merkle-sol" : " ^0.1.4" ,
45
- "@nomicfoundation/hardhat-chai-matchers" : " ^1 .0.6 " ,
45
+ "@nomicfoundation/hardhat-chai-matchers" : " ^2 .0.2 " ,
46
46
"@nomiclabs/hardhat-ethers" : " ^2.2.1" ,
47
47
"@nomiclabs/hardhat-etherscan" : " ^3.1.2" ,
48
- "@openzeppelin/contracts" : " ^4.8.0 " ,
49
- "@openzeppelin/contracts-upgradeable" : " ^4.8.0 " ,
48
+ "@openzeppelin/contracts" : " ^4.8.3 " ,
49
+ "@openzeppelin/contracts-upgradeable" : " ^4.8.3 " ,
50
50
"@openzeppelin/hardhat-upgrades" : " 1.26.0"
51
51
},
52
52
"devDependencies" : {
You can’t perform that action at this time.
0 commit comments