Skip to content

Commit

Permalink
fix(gha): dependency hell
Browse files Browse the repository at this point in the history
  • Loading branch information
bitbeckers committed Jun 6, 2024
1 parent 07dae73 commit 2944815
Show file tree
Hide file tree
Showing 6 changed files with 566 additions and 593 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ci-default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Check out pull request's HEAD commit instead of the merge commit to
# prevent gitlint from failing due to too long commit message titles,
Expand All @@ -52,14 +52,15 @@ jobs:
with:
python-version: "3.x"
- name: Setup pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4
with:
version: 8.9.0
- name: Set up Node.js 18
uses: actions/setup-node@v3
version: 9.1.1
- name: Set up Node.js 18
uses: actions/setup-node@v4
with:
node-version: "18.15.0"
node-version: "18.18.1"
cache: "pnpm"

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-cors-proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Publish
Expand Down
47 changes: 0 additions & 47 deletions .github/workflows/deploy-defender.yml

This file was deleted.

12 changes: 6 additions & 6 deletions .github/workflows/deploy-graph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4
with:
version: 8.9.0
- name: Set up Node.js 18
uses: actions/setup-node@v3
version: 9.1.1
- name: Set up Node.js 18.18.1
uses: actions/setup-node@v4
with:
node-version: "18.18.1"
cache: "pnpm"
node-version: "18.x"
- name: Install
run: pnpm install --frozen-lockfile
- name: Build the subgraph
Expand Down
23 changes: 9 additions & 14 deletions contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,24 +32,22 @@
"@chainlink/contracts": "^0.8.0",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@dlsl/hardhat-markup": "^1.0.0-rc.7",
"@looksrare/contracts-libs": "^3.4.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-viem": "^1.0.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-viem": "^2.0.2",
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/defender-sdk": "^1.4.0",
"@openzeppelin/hardhat-upgrades": "2.3.3",
"@openzeppelin/defender-sdk": "^1.13.3",
"@openzeppelin/hardhat-upgrades": "3.1.1",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@tenderly/hardhat-tenderly": "^2.1.0",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/node": "^18.11.11",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@types/node": "^18.18.1",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"commitizen": "^4.2.5",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
Expand Down Expand Up @@ -109,8 +107,5 @@
"test:hardhat": "hardhat test",
"test:gas": "forge test --match-path test/foundry/PerformanceTesting.t.sol --gas-report",
"hardhat": "hardhat"
},
"dependencies": {
"hardhat": "^2.18.3"
}
}
Loading

0 comments on commit 2944815

Please sign in to comment.