From 119bb16d033e028f4b0f7c163f254fa07295835c Mon Sep 17 00:00:00 2001 From: thisiskeithb <13375512+thisiskeithb@users.noreply.github.com> Date: Sat, 24 Feb 2024 01:32:13 -0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20Update=20Actions=20to=20latest=20ve?= =?UTF-8?q?rsions,=20Use=20Python=203.9?= 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 e7af3fc0df6..e0bdab950ba 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 bfd9a68adfd..19677304d4f 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