Skip to content

Commit

Permalink
feat: upgrade solidity version to 0.8.27
Browse files Browse the repository at this point in the history
  • Loading branch information
roderik committed Sep 29, 2024
1 parent 8ed7a40 commit dc25a35
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/solidity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
with:
sarif: slither.sarif
slither-args: --filter-paths "lib/" --filter-paths "node_modules/"
solc-version: ${{ vars.SOL_VERSION || '0.8.24' }}
solc-version: ${{ vars.SOL_VERSION || '0.8.27' }}
fail-on: none

- name: Upload findings to GitHub Advanced Security Dashboard
Expand Down Expand Up @@ -287,7 +287,7 @@ jobs:
- name: Report code coverage
if: github.event_name == 'pull_request'
uses: zgosalvez/[email protected].15
uses: zgosalvez/[email protected].16
with:
coverage-files: lcov.info
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
3 changes: 2 additions & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@
libs = ['node_modules', 'lib']
test = 'test'
cache_path = 'cache_forge'
solc = "0.8.24"
solc = "0.8.27"
optimizer = true
optimizer_runs = 10_000
gas_reports = ["*"]
fuzz = { runs = 1_000 }
auto_detect_solc = false
extra_output_files = [ "metadata" ]
viaIR = true

2 changes: 1 addition & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { HardhatUserConfig } from "hardhat/config";

const config: HardhatUserConfig = {
solidity: {
version: "0.8.24",
version: "0.8.27",
settings: {
viaIR: true,
optimizer: {
Expand Down

0 comments on commit dc25a35

Please sign in to comment.