feat: add destroy subcommand to tear down deployed servers (#14965) #33
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: Security | |
| 'on': | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| semgrep: | |
| name: Semgrep SAST | |
| runs-on: ubuntu-22.04 | |
| container: | |
| image: semgrep/semgrep@sha256:d3d1be3a3770514d16a6a57b9761575d7536d70f45a5220274f4ec7d55c442b9 # v1.151.0 | |
| steps: | |
| - uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 # v5.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Run semgrep | |
| run: > | |
| semgrep --config auto | |
| --exclude-rule dockerfile.security.last-user-is-root.last-user-is-root | |
| --error --quiet . | |
| pip-audit: | |
| name: Python dependency audit | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 # v5.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Algo environment | |
| uses: ./.github/actions/setup-algo | |
| - name: Run pip-audit | |
| run: uv run --with pip-audit pip-audit |