Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,28 @@ jobs:
path: doc/_build/latex/*.pdf
retention-days: 7

check-vulnerabilities:
name: "Check library vulnerabilities"
runs-on: ubuntu-latest
steps:
- uses: ansys/actions/[email protected]
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}
token: ${{ secrets.GITHUB_TOKEN }}
python-package-name: ${{ env.LIBRARY_NAME }}
dev-mode: ${{ github.ref != 'refs/heads/main' }}

actions-security:
name: "Check actions security"
runs-on: ubuntu-latest
steps:
- uses: ansys/actions/[email protected]
with:
generate-summary: true
token: ${{ secrets.GITHUB_TOKEN }}
auditing-level: 'high'
trust-ansys-actions: true

package:
name: Package library
needs: [tests_run_windows, docs_build]
Expand Down
Loading