Skip to content

Commit

Permalink
🔁 Upgrade to Solidity Version 0.8.26
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>
  • Loading branch information
pcaversaccio committed May 22, 2024
1 parent c7ec3cb commit f1018a7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: 👮‍♂️ Sanity checks
on: [push, pull_request, workflow_dispatch]

concurrency:
group: ${{github.workflow}}-${{github.ref}}
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: 🕵️‍♂️ Test smart contracts
on: [push, pull_request, workflow_dispatch]

concurrency:
group: ${{github.workflow}}-${{github.ref}}
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ out = "out" # the output directory (for artifacts)
libs = ["lib"] # a list of library directories
cache = true # whether to cache builds or not
cache_path = "cache" # where the cache is stored if enabled
solc_version = "0.8.25" # override for the solc version
solc_version = "0.8.26" # override for the solc version
evm_version = "shanghai" # set the EVM target version
optimizer = true # enable the solc optimiser
optimizer_runs = 999_999 # the number of optimiser runs
Expand Down
2 changes: 1 addition & 1 deletion test/MetamorphicContract.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: WTFPL
pragma solidity 0.8.25;
pragma solidity 0.8.26;

import {Test} from "forge-std/Test.sol";

Expand Down

0 comments on commit f1018a7

Please sign in to comment.