From ef525f06979ce9ea206cd9e5a9224695df707cfc Mon Sep 17 00:00:00 2001 From: CBL-Mariner-Bot <75509084+CBL-Mariner-Bot@users.noreply.github.com> Date: Tue, 7 Jan 2025 15:06:57 -0800 Subject: [PATCH] [AUTO-CHERRYPICK] Updated PR checks to use Python 3.9. - branch main (#11798) Co-authored-by: Pawel Winogrodzki --- .github/workflows/check-entangled-specs.yml | 4 ++-- .github/workflows/lint-specs.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check-entangled-specs.yml b/.github/workflows/check-entangled-specs.yml index fc0962302ad..dfb8529fec3 100644 --- a/.github/workflows/check-entangled-specs.yml +++ b/.github/workflows/check-entangled-specs.yml @@ -25,10 +25,10 @@ jobs: uses: actions/checkout@v4 # For consistency, we use the same major/minor version of Python that CBL-Mariner ships - - name: Setup Python 3.7 + - name: Setup Python 3.9 uses: actions/setup-python@v4 with: - python-version: 3.7 + python-version: 3.9 - name: Get Python dependencies run: python3 -m pip install -r toolkit/scripts/requirements.txt diff --git a/.github/workflows/lint-specs.yml b/.github/workflows/lint-specs.yml index 887bb0812ce..a415a239109 100644 --- a/.github/workflows/lint-specs.yml +++ b/.github/workflows/lint-specs.yml @@ -62,10 +62,10 @@ jobs: path: 'spec-cleaner' # For consistency, we use the same major/minor version of Python that CBL-Mariner ships - - name: Setup Python 3.7 + - name: Setup Python 3.9 uses: actions/setup-python@v4 with: - python-version: 3.7 + python-version: 3.9 # We take our version of the linting tool from the master branch to ensure rules # are consistent across all branches