Skip to content

Commit 0694f86

Browse files
committed
Merge remote-tracking branch 'origin/dev' into modernize-linting-and-config
2 parents 7c8691b + 51ab713 commit 0694f86

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
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:

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
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

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
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
@@ -37,7 +37,7 @@ jobs:
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/'

.github/workflows/doctor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
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

.github/workflows/pip-audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
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

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
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
@@ -38,7 +38,7 @@ jobs:
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/
@@ -47,7 +47,7 @@ jobs:
4747
uses: pypa/[email protected]
4848

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

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
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

slither/core/declarations/function.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)