Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 76b28ba

Browse files
committedJul 26, 2022
fix(ci): Update Github action versions
1 parent 8d8a426 commit 76b28ba

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed
 

‎.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
python-version: [3.5, 3.6, 3.7, 3.8]
23+
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, 3.10]
2424

2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v3
2727
- name: Set up Python ${{ matrix.python-version }}
28-
uses: actions/setup-python@v2
28+
uses: actions/setup-python@v4
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131
- name: Cache pip
32-
uses: actions/cache@v2
32+
uses: actions/cache@v3
3333
with:
3434
# This path is specific to Ubuntu
3535
path: ~/.cache/pip
@@ -57,7 +57,7 @@ jobs:
5757
pytest --cov=./ --cov-report=xml
5858
mkdir -p coverage/reports
5959
- name: Upload coverage to Codecov
60-
uses: codecov/codecov-action@v1
60+
uses: codecov/codecov-action@v3
6161
with:
6262
token: ${{ secrets.CODECOV_TOKEN }}
6363
file: ./coverage.xml

‎.github/workflows/package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
- name: Set up Python
13-
uses: actions/setup-python@v2
13+
uses: actions/setup-python@v4
1414
with:
15-
python-version: '3.7'
15+
python-version: '3.8'
1616
- name: Install dependencies
1717
run: |
1818
python -m pip install --upgrade pip

‎.github/workflows/sdk-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616
with:
1717
ref: ${{ github.head_ref }}
1818
fetch-depth: 0

0 commit comments

Comments
 (0)
Please sign in to comment.