Skip to content

Commit

Permalink
chore: bump solc to v0.8.24
Browse files Browse the repository at this point in the history
amarinkovic committed Aug 29, 2024
1 parent 818ef7c commit 9c45343
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ jobs:
cache: "yarn"

- name: Install solc
run: svm install 0.7.6 && svm install 0.8.20 && svm use 0.8.20
run: svm install 0.7.6 && svm install 0.8.24 && svm use 0.8.24

- name: Fix ownership
run: git config --global --add safe.directory /__w/contracts-v3/contracts-v3
@@ -85,7 +85,7 @@ jobs:
- name: Slither Static Analyser
id: slither
env:
SOLC_VERSION: 0.8.20
SOLC_VERSION: 0.8.24
run: make slither

- name: Upload Slither SARIF file
2 changes: 1 addition & 1 deletion gemforge.config.cjs
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ module.exports = {
// SPDX License - to be inserted in all generated .sol files
license: "MIT",
// Solidity compiler version - to be inserted in all generated .sol files
version: "0.8.20",
version: "0.8.24",
},
// commands to execute
commands: {
2 changes: 1 addition & 1 deletion src/interfaces/IERC165.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
pragma solidity 0.8.24;

interface IERC165 {
/// @notice Query if a contract implements an interface
2 changes: 1 addition & 1 deletion src/interfaces/IERC173.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
pragma solidity 0.8.24;

/// @title ERC-173 Contract Ownership Standard
/// Note: the ERC-165 identifier for this interface is 0x7f5828d0 is ERC165

0 comments on commit 9c45343

Please sign in to comment.