Update python version to 3.7.10 (#512)

This commit is contained in:
Carl Lundin 2021-02-18 18:55:29 -08:00 committed by GitHub
parent 570ae6bb52
commit 006c6dd5fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 13 deletions

View file

@ -19,7 +19,7 @@ jobs:
- name: Tool Setup - name: Tool Setup
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with: with:
python-version: 3.8.5 python-version: 3.7.10
architecture: x64 architecture: x64
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View file

@ -1,6 +1,6 @@
name: Core-Checker name: Core-Checker
on: [pull_request] on: [pull_request]
jobs: jobs:
core-checker: core-checker:
@ -11,11 +11,11 @@ jobs:
- name: Tool Setup - name: Tool Setup
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with: with:
python-version: 3.8.5 python-version: 3.7.10
architecture: x64 architecture: x64
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Use the checks as defined by the user, so they can locally adjust as needed # Use the checks as defined by the user, so they can locally adjust as needed
- name: Checkout FreeRTOS Tools - name: Checkout FreeRTOS Tools
uses: actions/checkout@v2 uses: actions/checkout@v2
@ -28,15 +28,15 @@ jobs:
uses: actions/checkout@v2 uses: actions/checkout@v2
with: with:
ref: ${{ github.event.pull_request.head.sha }} ref: ${{ github.event.pull_request.head.sha }}
path: inspect path: inspect
# Collect all affected files # Collect all affected files
- name: Collecting changed files - name: Collecting changed files
uses: lots0logs/gh-action-get-changed-files@2.1.4 uses: lots0logs/gh-action-get-changed-files@2.1.4
with: with:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
# Run checks # Run checks
- name: Check File Headers - name: Check File Headers
run: | run: |
cd inspect cd inspect
@ -55,11 +55,11 @@ jobs:
submodules: 'recursive' submodules: 'recursive'
fetch-depth: 1 fetch-depth: 1
- name: Posix Build Checker - name: Posix Build Checker
run: | run: |
bash workspace/.github/scripts/posix_build_checker.sh workspace bash workspace/.github/scripts/posix_build_checker.sh workspace
- name: Install lib pcap dev - name: Install lib pcap dev
run: | run: |
sudo apt-get install libpcap-dev sudo apt-get install libpcap-dev
- name: Posix Network Build Checker - name: Posix Network Build Checker
run: | run: |
bash workspace/.github/scripts/posix_network_build_checker.sh workspace bash workspace/.github/scripts/posix_network_build_checker.sh workspace