Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mmv08 committed Sep 5, 2023
1 parent bf74225 commit e131eb2
Show file tree
Hide file tree
Showing 5 changed files with 622 additions and 376 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: safe-core-protocol-demo-contracts
on: [ push, pull_request ]
on: [push, pull_request]
defaults:
run:
working-directory: ./contracts
Expand All @@ -9,9 +9,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 16.7.0
node-version: 18.x
- uses: actions/cache@v2
with:
path: "**/node_modules"
Expand All @@ -23,9 +23,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 16.7.0
node-version: 18.x
- uses: actions/cache@v2
with:
path: "**/node_modules"
Expand Down
6 changes: 4 additions & 2 deletions contracts/.prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"plugins": ["prettier-plugin-solidity"],
"overrides": [
{
"files": "*.sol",
Expand All @@ -7,7 +8,8 @@
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
"bracketSpacing": false,
"parser": "solidity-parse"
}
}
],
Expand All @@ -16,4 +18,4 @@
"trailingComma": "all",
"singleQuote": false,
"semi": true
}
}
2 changes: 1 addition & 1 deletion contracts/.solhint.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": "solhint:recommended",
"plugins": ["prettier"],
"plugins": [],
"rules": {
"compiler-version": "off",
"func-visibility": [
Expand Down
50 changes: 25 additions & 25 deletions contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,42 +25,42 @@
},
"devDependencies": {
"@gelatonetwork/relay-context": "^2.1.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@openzeppelin/contracts": "^4.9.1",
"@safe-global/mock-contract": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@openzeppelin/contracts": "^4.9.3",
"@safe-global/mock-contract": "^4.1.0",
"@safe-global/safe-core-protocol": "0.2.0-alpha.1",
"@safe-global/safe-singleton-factory": "^1.0.14",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.0",
"@types/chai": "^4.2.0",
"@safe-global/safe-singleton-factory": "^1.0.15",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/chai": "^4.3.6",
"@types/mocha": ">=9.1.0",
"@types/node": ">=12.0.0",
"@types/node": ">=20.5.9",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"chai": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"chai": "^4.3.8",
"dotenv": "^16.3.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^6.4.0",
"hardhat": "^2.15.0",
"hardhat-deploy": "^0.11.34",
"eslint-plugin-prettier": "^5.0.0",
"ethers": "^6.7.1",
"hardhat": "^2.17.2",
"hardhat-deploy": "^0.11.37",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-typechain": "^0.3.5",
"prettier": "^2.8.8",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solhint": "^3.6.2",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.0",
"solidity-coverage": "^0.8.4",
"ts-node": ">=8.0.0",
"typechain": "^8.2.0",
"typescript": "~5.0.0",
"typechain": "^8.3.1",
"typescript": "~5.2.2",
"yargs": "^17.7.2"
},
"files": [
Expand Down
Loading

0 comments on commit e131eb2

Please sign in to comment.