From f5d09a394f3e74125db0048532fcee81bdb3c725 Mon Sep 17 00:00:00 2001 From: Ryan Faircloth Date: Wed, 16 Jun 2021 19:42:56 -0400 Subject: [PATCH] fix: correct python version quotes --- .github/workflows/build-test-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-test-release.yml b/.github/workflows/build-test-release.yml index 31272eb..30b9ca0 100644 --- a/.github/workflows/build-test-release.yml +++ b/.github/workflows/build-test-release.yml @@ -57,8 +57,8 @@ jobs: strategy: matrix: python-version: - - "3.8" - - "3.9" + - 3.8 + - 3.9 steps: - uses: actions/checkout@v2 - name: Setup python @@ -154,7 +154,7 @@ jobs: - name: Setup python uses: actions/setup-python@v2 with: - python-version: "3.8" + python-version: 3.8 - name: Install Poetry run: curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3 - - name: Install Code @@ -196,7 +196,7 @@ jobs: cache-from: registry.access.redhat.com/ubi8/ubi cache-to: type=inline build-args: | - PYTHON_RUNTIME_VERSION="3.8" + PYTHON_RUNTIME_VERSION=3.8 - name: Run Snyk to check Docker image for vulnerabilities # Snyk can be used to break the build when it detects vulnerabilities. # In this case we want to upload the issues to GitHub Code Scanning