From 02475b8b7e2c0274e82dd5dd69bdcfa5db737938 Mon Sep 17 00:00:00 2001 From: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com> Date: Thu, 14 Mar 2024 11:38:57 -0700 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20Update=20Actions=20&=20Python=20ver?= =?UTF-8?q?sions=20(#1013)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-pr.yml | 12 ++++++------ .github/workflows/deploy.yml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index e7af3fc0df..e0bdab950b 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Check out the PR - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Get the list of directories containing changed config files: - name: Get changed directories @@ -44,7 +44,7 @@ jobs: echo -e "DIRS<>$GITHUB_ENV - name: Cache pip - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} @@ -52,15 +52,15 @@ jobs: ${{ runner.os }}-pip- - name: Cache PlatformIO - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.platformio key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} - - name: Select Python 3.7 - uses: actions/setup-python@v3 + - name: Select Python 3.9 + uses: actions/setup-python@v5 with: - python-version: '3.7' # Version range or exact version of a Python version to use, using semvers version range syntax. + python-version: '3.9' # Version range or exact version of a Python version to use, using semvers version range syntax. architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified - name: Install PlatformIO diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index bfd9a68adf..19677304d4 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out - uses: actions/checkout@v3 + uses: actions/checkout@v4 # For each directory containing a changed config file, copy the .h files and build the code: - name: Deploy bugfix-2.1.x