Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: revert dev dependency to latest hardhat #716

Merged
merged 5 commits into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ on:

jobs:
test_on_windows:
name: Test Ignition on Windows with Node 16
name: Test Ignition on Windows with Node 18
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
cache: npm
- name: Install
run: npm install
Expand All @@ -27,13 +27,13 @@ jobs:
run: npm run test:examples

test_on_macos:
name: Test Ignition on MacOS with Node 16
name: Test Ignition on MacOS with Node 18
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
cache: npm
- name: Install
run: npm install
Expand All @@ -49,7 +49,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 20.5]
node: [18, 20.5]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
Expand All @@ -72,7 +72,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
cache: npm
- name: Install
run: npm install
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"devDependencies": {
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"hardhat": "2.20.0",
"hardhat": "^2.18.0",
"prettier-plugin-solidity": "1.1.3"
}
}
2 changes: 1 addition & 1 deletion examples/ens/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"devDependencies": {
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"hardhat": "2.20.0",
"hardhat": "^2.18.0",
"prettier-plugin-solidity": "1.1.3"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion examples/sample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"devDependencies": {
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"hardhat": "2.20.0",
"hardhat": "^2.18.0",
"prettier-plugin-solidity": "1.1.3"
}
}
2 changes: 1 addition & 1 deletion examples/ts-sample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"devDependencies": {
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"hardhat": "2.20.0",
"hardhat": "^2.18.0",
"prettier-plugin-solidity": "1.1.3"
}
}
2 changes: 1 addition & 1 deletion examples/viem-sample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@nomicfoundation/hardhat-network-helpers": "1.0.10",
"@nomicfoundation/hardhat-viem": "2.0.0",
"chai": "4.4.1",
"hardhat": "2.20.0",
"hardhat": "^2.18.0",
"prettier-plugin-solidity": "1.1.3"
}
}
Loading
Loading