Scan all images #118
This file contains 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 all images | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '12 21 * * *' # UTC | |
jobs: | |
scan_release_images: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
strategy: | |
max-parallel: 2 | |
fail-fast: false | |
matrix: | |
release: ['0.0.0-dev', '24.3.0', '23.11.0', '23.7.0', '23.4.1', '23.4.0'] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Run image | |
uses: abatilo/actions-poetry@v2 | |
with: | |
poetry-version: 1.7.1 | |
- name: Install deps | |
run: poetry install | |
- name: Scan all images of the release | |
id: scan | |
run: poetry run python stack_scanner/main.py scan-release ${{ secrets.SECOBSERVE_API_TOKEN }} ${{ matrix.release }} |