From 2e32ac3c4c9950864036255be82237a909db7553 Mon Sep 17 00:00:00 2001 From: Chris Hawk Date: Thu, 25 Jul 2024 11:03:53 -0700 Subject: [PATCH] actions/setup-python appears to need a string when there are two digits to the right of the decimal --- .github/workflows/gcloud.yml | 2 +- .github/workflows/gcsfuse.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gcloud.yml b/.github/workflows/gcloud.yml index b7b8406..711ef94 100644 --- a/.github/workflows/gcloud.yml +++ b/.github/workflows/gcloud.yml @@ -34,7 +34,7 @@ jobs: - name: Set up Python 3.10 uses: actions/setup-python@v4 with: - python-version: 3.10 + python-version: '3.10' - name: Install dependencies run: | diff --git a/.github/workflows/gcsfuse.yml b/.github/workflows/gcsfuse.yml index ce8f26d..8898703 100644 --- a/.github/workflows/gcsfuse.yml +++ b/.github/workflows/gcsfuse.yml @@ -29,7 +29,7 @@ jobs: - name: Set up Python 3.10 uses: actions/setup-python@v4 with: - python-version: 3.10 + python-version: '3.10' - name: Install dependencies run: |