Skip to content

Commit b67a50e

Browse files
committed
fix: update sol
1 parent fd953c0 commit b67a50e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/solidity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
with:
5151
sarif: slither.sarif
5252
slither-args: --filter-paths "lib/" --filter-paths "node_modules/"
53-
solc-version: 0.8.24
53+
solc-version: 0.8.26
5454
fail-on: none
5555

5656
- name: Upload findings to GitHub Advanced Security Dashboard

foundry.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
libs = ['node_modules', 'lib']
2323
test = 'test'
2424
cache_path = 'cache_forge'
25-
solc = "0.8.24"
25+
solc = "0.8.26"
2626
optimizer = true
2727
optimizer_runs = 10_000
2828
gas_reports = ["*"]

hardhat.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type { HardhatUserConfig } from "hardhat/config";
55

66
const config: HardhatUserConfig = {
77
solidity: {
8-
version: "0.8.24",
8+
version: "0.8.26",
99
settings: {
1010
viaIR: true,
1111
optimizer: {

test/EAS.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity ^0.8.24;
2+
pragma solidity ^0.8.26;
33

44
import { Test, console } from "forge-std/Test.sol";
55
import { EAS } from "../contracts/CustomEAS.sol";

0 commit comments

Comments
 (0)