From 684a2f6e1c731fbaaedd3aa7754dfb388d3a26cc Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Tue, 2 May 2023 07:01:26 -0700 Subject: [PATCH] Update workflow to ubuntu 22.04 (#3369) * Update workflow to ubuntu 22.04 * Updated Python to 3.10.11 --- .github/workflows/formatting.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/formatting.yml b/.github/workflows/formatting.yml index 199645394c0..2957a508416 100644 --- a/.github/workflows/formatting.yml +++ b/.github/workflows/formatting.yml @@ -24,7 +24,7 @@ jobs: # Skip if the commit message contains "ci skip" if: "!contains(github.event.head_commit.message, 'ci skip')" - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: # Checks-out repository under $GITHUB_WORKSPACE, so job can access it @@ -33,7 +33,7 @@ jobs: - uses: actions/setup-python@v4 with: - python-version: '3.8.10' # Version range or exact version of a Python version to use, using SemVer's version range syntax + python-version: '3.10.11' # Version range or exact version of a Python version to use, using SemVer's version range syntax architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified - name: "Install pip"