File tree Expand file tree Collapse file tree 8 files changed +14
-14
lines changed
slither/core/declarations Expand file tree Collapse file tree 8 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 4949 - os : windows-2025
5050 type : truffle
5151 steps :
52- - uses : actions/checkout@v4
52+ - uses : actions/checkout@v5
5353 - name : Set up Python ${{ matrix.python }}
5454 uses : actions/setup-python@v5
5555 with :
Original file line number Diff line number Diff line change 1717 runs-on : ubuntu-latest
1818 steps :
1919 - name : Checkout
20- uses : actions/checkout@v4
20+ uses : actions/checkout@v5
2121
2222 - name : Set up QEMU
2323 uses : docker/setup-qemu-action@v3
Original file line number Diff line number Diff line change 2828 runs-on : ubuntu-latest
2929 steps :
3030 - name : Checkout
31- uses : actions/checkout@v4
31+ uses : actions/checkout@v5
3232 - name : Setup Pages
3333 uses : actions/configure-pages@v5
3434 - uses : actions/setup-python@v5
3737 - run : pip install -e ".[doc]"
3838 - run : pdoc -o html/ slither '!slither.tools' # TODO fix import errors on pdoc run
3939 - name : Upload artifact
40- uses : actions/upload-pages-artifact@v3
40+ uses : actions/upload-pages-artifact@v4
4141 with :
4242 # Upload the doc
4343 path : ' ./html/'
Original file line number Diff line number Diff line change 2929 - os : windows-2025
3030 python : 3.8
3131 steps :
32- - uses : actions/checkout@v4
32+ - uses : actions/checkout@v5
3333
3434 - name : Set up Python ${{ matrix.python }}
3535 uses : actions/setup-python@v5
Original file line number Diff line number Diff line change 1919
2020 steps :
2121 - name : Checkout repository
22- uses : actions/checkout@v4
22+ uses : actions/checkout@v5
2323
2424 - name : Install Python
2525 uses : actions/setup-python@v5
Original file line number Diff line number Diff line change 1010 runs-on : ubuntu-latest
1111
1212 steps :
13- - uses : actions/checkout@v4
13+ - uses : actions/checkout@v5
1414
1515 - name : Set up Python
1616 uses : actions/setup-python@v5
3838 - build-release
3939 steps :
4040 - name : fetch dists
41- uses : actions/download-artifact@v4
41+ uses : actions/download-artifact@v5
4242 with :
4343 name : slither-dists
4444 path : dist/
47474848
4949 - name : sign
50- uses :
sigstore/[email protected] .0 50+ uses :
sigstore/[email protected] .1 5151 with :
5252 inputs : ./dist/*.tar.gz ./dist/*.whl
5353 release-signing-artifacts : true
Original file line number Diff line number Diff line change 3333 - os : windows-2025
3434 python : 3.8
3535 steps :
36- - uses : actions/checkout@v4
36+ - uses : actions/checkout@v5
3737 - name : Set up Python ${{ matrix.python }}
3838 uses : actions/setup-python@v5
3939 with :
@@ -106,7 +106,7 @@ jobs:
106106 runs-on : ubuntu-latest
107107
108108 steps :
109- - uses : actions/checkout@v4
109+ - uses : actions/checkout@v5
110110 - name : Set up Python 3.8
111111 uses : actions/setup-python@v5
112112 with :
@@ -115,7 +115,7 @@ jobs:
115115 - run : pip install coverage[toml]
116116
117117 - name : download coverage data
118- uses : actions/download-artifact@v4
118+ uses : actions/download-artifact@v5
119119 with :
120120 pattern : coverage-data-*
121121 merge-multiple : true
Original file line number Diff line number Diff line change @@ -1295,7 +1295,7 @@ def all_conditional_solidity_variables_read(
12951295 self , include_loop : bool = True
12961296 ) -> List [SolidityVariable ]:
12971297 """
1298- Return the Soldiity variables directly used in a condtion
1298+ Return the Solidity variables directly used in a condition
12991299
13001300 Use of the IR to filter index access
13011301 Assumption: the solidity vars are used directly in the conditional node
@@ -1337,7 +1337,7 @@ def _explore_func_nodes(
13371337
13381338 def all_solidity_variables_used_as_args (self ) -> List [SolidityVariable ]:
13391339 """
1340- Return the Soldiity variables directly used in a call
1340+ Return the Solidity variables directly used in a call
13411341
13421342 Use of the IR to filter index access
13431343 Used to catch check(msg.sender)
You can’t perform that action at this time.
0 commit comments