Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
${{ runner.os }}-pnpm-store-

- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node_version }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
uses: actions/checkout@v5

- name: Initialise CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
queries: +security-and-quality

- name: Autobuild
uses: github/codeql-action/autobuild@v3
uses: github/codeql-action/autobuild@v4

- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{ matrix.language }}"
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
${{ runner.os }}-pnpm-store-

- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node_version }}

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test-createx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
${{ runner.os }}-pnpm-store-

- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node_version }}

Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
sarif: results.sarif

- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v3
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: ${{ steps.slither.outputs.sarif }}

Expand Down Expand Up @@ -150,12 +150,12 @@ jobs:
- name: Set up LCOV
uses: hrishikesh-kadam/setup-lcov@v1
with:
ref: v2.3.1
ref: v2.3.2

- name: Run coverage
run: |
echo '```' >> $GITHUB_STEP_SUMMARY
NO_COLOR=1 forge coverage --report summary --report lcov --lcov-version 2.3.1 >> $GITHUB_STEP_SUMMARY
NO_COLOR=1 forge coverage --report summary --report lcov --lcov-version 2.3.2 >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
env:
FOUNDRY_PROFILE: default
Expand All @@ -175,7 +175,7 @@ jobs:
lcov-file: ./lcov.info
github-token: ${{ secrets.GITHUB_TOKEN }}

# The following steps act as a temporary workaround, as LCOV `2.3.1` is not yet supported
# The following steps act as a temporary workaround, as LCOV `2.3.2` is not yet supported
# in `zgosalvez/github-actions-report-lcov@v5`: https://github.com/zgosalvez/github-actions-report-lcov/issues/168.
- name: Set up LCOV `1.16`
run: |
Expand Down
2 changes: 1 addition & 1 deletion foundry.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"lib/openzeppelin-contracts": {
"branch": {
"name": "master",
"rev": "c2eee49b4eec34ab10fc05faee155af974b446c7"
"rev": "8631702babdb0a3890c470e0c9aebf9bc28c3637"
}
},
"lib/solady": {
Expand Down
4 changes: 2 additions & 2 deletions interface/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@
"sharp": "^0.34.4"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@eslint/js": "^9.39.0",
"@next/eslint-plugin-next": "^16.0.1",
"@tailwindcss/postcss": "^4.1.16",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^24.9.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"autoprefixer": "^10.4.21",
"eslint": "^9.38.0",
"eslint": "^9.39.0",
"eslint-config-next": "^16.0.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
Expand Down
2 changes: 1 addition & 1 deletion lib/openzeppelin-contracts
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
"clean": "npx hardhat clean && forge clean",
"test": "forge test --out forge-artifacts",
"snapshot": "forge snapshot --out forge-artifacts",
"coverage": "forge coverage --report summary --out forge-artifacts --lcov-version 2.3.1",
"coverage:report": "forge coverage --report lcov --out forge-artifacts --lcov-version 2.3.1 && lcov --branch-coverage --remove lcov.info \"test/*\" --output-file lcov.info --ignore-errors inconsistent,inconsistent && genhtml lcov.info --branch-coverage --output-dir coverage --ignore-errors inconsistent,inconsistent",
"coverage": "forge coverage --report summary --out forge-artifacts --lcov-version 2.3.2",
"coverage:report": "forge coverage --report lcov --out forge-artifacts --lcov-version 2.3.2 && lcov --branch-coverage --remove lcov.info \"test/*\" --output-file lcov.info --ignore-errors inconsistent,inconsistent && genhtml lcov.info --branch-coverage --output-dir coverage --ignore-errors inconsistent,inconsistent",
"compile": "npx hardhat compile && forge build --out forge-artifacts",
"size": "npx hardhat size-contracts",
"abi": "npx hardhat export-abi",
Expand Down Expand Up @@ -240,12 +240,12 @@
"start:interface": "pnpm -C interface start"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@eslint/js": "^9.39.0",
"@nomicfoundation/hardhat-ethers": "^3.1.2",
"@nomicfoundation/hardhat-verify": "^2.1.3",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"eslint": "^9.38.0",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.8",
"ethers": "^6.15.0",
"hardhat": "^2.26.5",
Expand Down
Loading
Loading