AAP-64830: fixes CVE-2026-1207, CVE-2026-1287, CVE-2026-1312. (#1834) #638
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: Monitor repo for security vulnerabilities | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| jobs: | |
| security: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.12' | |
| - uses: snyk/actions/setup@master | |
| - name: Install dependencies | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| pip install . | |
| - name: Monitor project and report vulnerabilities | |
| env: | |
| SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
| run: snyk monitor --all-projects --skip-unresolved | |
| - name: Generate code vulnerability report | |
| env: | |
| SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
| run: snyk code test --project-name="ansible/ansible-ai-connect-service" --report ${{ github.workspace }} | |
| continue-on-error: true |