From c414bc98dec079dad581036d5b3b75b87ebd4a0b Mon Sep 17 00:00:00 2001 From: Matt Luongo Date: Fri, 25 Oct 2024 17:15:38 -0400 Subject: [PATCH] Upgrade to Slither 0.9.6 / Python 3.11 --- .github/workflows/contracts.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/contracts.yml b/.github/workflows/contracts.yml index b580dcd..1e79ef9 100644 --- a/.github/workflows/contracts.yml +++ b/.github/workflows/contracts.yml @@ -53,9 +53,10 @@ jobs: node-version: "14" cache: "yarn" - - uses: actions/setup-python@v4 + - name: Setup Python + uses: actions/setup-python@v5 with: - python-version: 3.8.5 + python-version: 3.11 - name: Install Solidity env: @@ -66,7 +67,7 @@ jobs: solc-select use $SOLC_VERSION - name: Install Slither env: - SLITHER_VERSION: 0.8.0 + SLITHER_VERSION: 0.9.6 run: pip3 install slither-analyzer==$SLITHER_VERSION - name: Install dependencies