update dependencies + version bump #81
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Scan for security issues | |
| on: | |
| push: | |
| branches: [ main, dev ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| butler-offline-scan: | |
| name: offline cargo scan | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| - run: | | |
| cargo install cargo-audit --locked | |
| cargo audit | |
| working-directory: ./butler_offline | |
| application-wrapper-scan: | |
| name: offline application-wrapper scan | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: npm install and scan | |
| run: | | |
| npm i | |
| npm audit --audit-level=high | |
| working-directory: ./application-wrapper/BudgetButlerWeb | |
| butler-online-api-scan: | |
| name: online api cargo scan | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| - run: | | |
| cargo install cargo-audit --locked | |
| cargo audit | |
| working-directory: ./butler_online_api | |
| butler-online-frontend-scan: | |
| name: butler online frontend scan | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: npm install and scan | |
| run: | | |
| npm i | |
| npm audit --audit-level=high | |
| working-directory: ./butler_online/budgetbutler |