Skip to content

Commit

Permalink
Fix: Correct comments in security.yaml workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Watkins <[email protected]>
  • Loading branch information
ModeSevenIndustrialSolutions committed Nov 23, 2023
1 parent 74ea2d1 commit 6fe5c04
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/security.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand All @@ -34,7 +34,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: "Install dependencies"
- name: 'Install dependencies'
run: |
pip install --upgrade pip
pdm lock
Expand All @@ -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:
Expand Down

0 comments on commit 6fe5c04

Please sign in to comment.