CI: use distro's Python for local deployment check #308
Workflow file for this run
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: Security | |
permissions: {} | |
on: | |
push: | |
branches: | |
- 'master' | |
tags: | |
- '*' | |
paths-ignore: | |
- '**/README.md' | |
- '.github/RELEASE.md' | |
pull_request: | |
paths-ignore: | |
- '**/README.md' | |
- '.github/RELEASE.md' | |
jobs: | |
snyk-lint-python: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
req_path: ["deploy/requirements.txt", "docs/requirements.txt"] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
- name: install dependencies | |
run: pip install -r ${{ matrix.req_path }} | |
- name: Copy requirements.txt at root of GITHUB_WORKSPACE for Snyk | |
run: cp ${{ matrix.req_path }} . | |
- name: Run Snyk to check for vulnerabilities | |
uses: snyk/actions/python@master | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
with: | |
command: monitor | |
continue-on-error: true | |
# args: --sarif-file-output=snyk.sarif | |
# - name: Upload result to GitHub Code Scanning | |
# uses: github/codeql-action/upload-sarif@v2 | |
# with: | |
# sarif_file: snyk.sarif | |
hadolint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint Dockerfile | |
id: hadolint | |
uses: hadolint/[email protected] | |
with: | |
# only consider errors, not warning or info level | |
failure-threshold: error | |
output-file: ${{ github.workspace }}/hadolint.out | |
continue-on-error: true | |
- name: Upload hadolint output artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: hadolint | |
path: ${{ github.workspace }}/hadolint.out |