From 6fe5c04608e1ec472a7482fdf4ead3b460710619 Mon Sep 17 00:00:00 2001 From: Matthew Watkins Date: Thu, 23 Nov 2023 12:47:20 +0000 Subject: [PATCH] Fix: Correct comments in security.yaml workflow Signed-off-by: Matthew Watkins --- .github/workflows/security.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/security.yaml b/.github/workflows/security.yaml index 09e37911..2bfb2ad9 100644 --- a/.github/workflows/security.yaml +++ b/.github/workflows/security.yaml @@ -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/gh-action-pip-audit@v1.0.8 # with: