From cd04b179801ec6e49009a92fccc47bf8d0e21725 Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Thu, 12 Sep 2024 18:10:40 +0800 Subject: [PATCH] fix slither --- .github/workflows/slither.yaml | 26 +++++++------------------- 1 file changed, 7 insertions(+), 19 deletions(-) diff --git a/.github/workflows/slither.yaml b/.github/workflows/slither.yaml index 1a98d5dc..4bfd8e0e 100644 --- a/.github/workflows/slither.yaml +++ b/.github/workflows/slither.yaml @@ -6,7 +6,7 @@ on: - main pull_request: branches: - - '*' + - "*" types: - synchronize - opened @@ -19,22 +19,10 @@ jobs: strategy: matrix: include: - - project: 'messaging/erc20' - file: 'm-erc20.sarif' - - project: 'messaging/message' - file: 'm-message.sarif' - - project: 'messaging/nft' - file: 'm-nft.sarif' - - project: 'messaging/zeta' - file: 'm-zeta.sarif' - - project: 'omnichain/multioutput' - file: 'o-multioutput.sarif' - - project: 'omnichain/nft' - file: 'o-nft.sarif' - - project: 'omnichain/staking' - file: 'o-staking.sarif' - - project: 'omnichain/swap' - file: 'o-swap.sarif' + - project: "hello" + file: "hello.sarif" + - project: "swap" + file: "swap.sarif" permissions: contents: read security-events: write @@ -46,7 +34,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v2 with: - node-version: '18' + node-version: "18" - name: Install Dependencies run: yarn install @@ -64,7 +52,7 @@ jobs: with: ignore-compile: true sarif: ${{ matrix.file}} - node-version: '18' + node-version: "18" target: ${{ matrix.project}} fail-on: none