Skip to content

Commit 9a3fa0a

Browse files
committed
feat: upgrade solidity version to 0.8.27
1 parent 9b0a5a1 commit 9a3fa0a

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/solidity.yml

Lines changed: 2 additions & 2 deletions
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: ${{ vars.SOL_VERSION || '0.8.24' }}
53+
solc-version: ${{ vars.SOL_VERSION || '0.8.27' }}
5454
fail-on: none
5555

5656
- name: Upload findings to GitHub Advanced Security Dashboard
@@ -287,7 +287,7 @@ jobs:
287287
288288
- name: Report code coverage
289289
if: github.event_name == 'pull_request'
290-
uses: zgosalvez/[email protected].15
290+
uses: zgosalvez/[email protected].16
291291
with:
292292
coverage-files: lcov.info
293293
github-token: ${{ secrets.GITHUB_TOKEN }}

foundry.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
fs_permissions = [{ access = "read", path = "ignition/deployments/chain-31337/deployed_addresses.json"}]
2-
31
[profile.ci]
42
fuzz = { runs = 10_000 }
53
verbosity = 4
@@ -24,13 +22,12 @@ fs_permissions = [{ access = "read", path = "ignition/deployments/chain-31337/de
2422
libs = ['node_modules', 'lib']
2523
test = 'test'
2624
cache_path = 'cache_forge'
27-
solc = "0.8.24"
25+
solc = "0.8.27"
2826
optimizer = true
2927
optimizer_runs = 10_000
3028
gas_reports = ["*"]
3129
fuzz = { runs = 1_000 }
3230
auto_detect_solc = false
3331
extra_output_files = [ "metadata" ]
3432
viaIR = true
35-
fs_permissions = [{ access = "read", path = "ignition/deployments/chain-31337/deployed_addresses.json"}]
3633

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.27",
99
settings: {
1010
viaIR: true,
1111
optimizer: {

0 commit comments

Comments
 (0)