From bb74bf3bd46314e7cb263278b969a979584e3256 Mon Sep 17 00:00:00 2001 From: Wade Barnes Date: Fri, 26 Apr 2024 10:57:02 -0700 Subject: [PATCH] Ensure GHA jobs are running with Python 3.10 (#33) Signed-off-by: Wade Barnes --- .github/workflows/buildpackages.yaml | 6 +++--- .github/workflows/lint.yaml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/buildpackages.yaml b/.github/workflows/buildpackages.yaml index 62e78ad..c5b8c04 100644 --- a/.github/workflows/buildpackages.yaml +++ b/.github/workflows/buildpackages.yaml @@ -76,10 +76,10 @@ jobs: - name: Check out code uses: actions/checkout@v4 - - name: Set up Python 3.8 + - name: Set up Python uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.10 - name: List Python and PIP versions run: | @@ -146,4 +146,4 @@ jobs: with: name: third-party-dependencies path: /tmp/third-party-dependencies - retention-days: 5 \ No newline at end of file + retention-days: 5 diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index ae4662a..63f77d2 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -13,7 +13,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.8' + python-version: '3.10' - uses: actions/cache@v4 with: path: ~/.cache/pip