generated from aicoe-aiops/project-template
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Correct comments in security.yaml workflow
Signed-off-by: Matthew Watkins <[email protected]>
- Loading branch information
1 parent
74ea2d1
commit 6fe5c04
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# For more information see: | ||
# https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | ||
|
||
name: "⛔️ Security auditing" | ||
name: '⛔️ Security auditing' | ||
|
||
# yamllint disable-line rule:truthy | ||
on: | ||
|
@@ -14,17 +14,17 @@ on: | |
|
||
jobs: | ||
build: | ||
name: "Audit Python dependencies" | ||
name: 'Audit Python dependencies' | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.9", "3.10", "3.11"] | ||
python-version: ['3.9', '3.10', '3.11'] | ||
steps: | ||
- name: "Checkout repository" | ||
- name: 'Checkout repository' | ||
uses: actions/checkout@v4 | ||
|
||
- name: "Setup PDM for build commands" | ||
- name: 'Setup PDM for build commands' | ||
uses: pdm-project/setup-pdm@v3 | ||
with: | ||
version: 2.10.0 | ||
|
@@ -34,7 +34,7 @@ jobs: | |
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: "Install dependencies" | ||
- name: 'Install dependencies' | ||
run: | | ||
pip install --upgrade pip | ||
pdm lock | ||
|
@@ -43,7 +43,7 @@ jobs: | |
python -m pip install . | ||
pdm list --graph | ||
- name: "Run: pip-audit" | ||
- name: 'Run: pip-audit' | ||
uses: pypa/[email protected] | ||
|
||
# with: | ||
|