Skip to content

Commit 7859b7e

Browse files
committed
CI: update actions versions
1 parent 5af5780 commit 7859b7e

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/ci_crontests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ jobs:
4545

4646
steps:
4747
- name: Checkout code
48-
uses: actions/checkout@v2
48+
uses: actions/checkout@v3
4949
with:
5050
fetch-depth: 0
5151
- name: Set up Python
52-
uses: actions/setup-python@v2
52+
uses: actions/setup-python@v4
5353
with:
5454
python-version: ${{ matrix.python }}
5555
- name: Install Python dependencies

.github/workflows/ci_devtests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ jobs:
3737

3838
steps:
3939
- name: Checkout code
40-
uses: actions/checkout@v2
40+
uses: actions/checkout@v3
4141
with:
4242
fetch-depth: 0
4343
- name: Set up Python
44-
uses: actions/setup-python@v2
44+
uses: actions/setup-python@v4
4545
with:
4646
python-version: ${{ matrix.python }}
4747
- name: Install Python dependencies
@@ -50,6 +50,6 @@ jobs:
5050
run: tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }}
5151
- name: Upload coverage to codecov
5252
if: contains(matrix.toxenv,'-cov')
53-
uses: codecov/codecov-action@v2
53+
uses: codecov/codecov-action@v3
5454
with:
5555
file: ./coverage.xml

.github/workflows/ci_tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ jobs:
5555

5656
steps:
5757
- name: Checkout code
58-
uses: actions/checkout@v2
58+
uses: actions/checkout@v3
5959
with:
6060
fetch-depth: 0
6161
- name: Set up Python
62-
uses: actions/setup-python@v2
62+
uses: actions/setup-python@v4
6363
with:
6464
python-version: ${{ matrix.python }}
6565
- name: Install Python dependencies
@@ -68,7 +68,7 @@ jobs:
6868
run: tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }}
6969
- name: Upload coverage to codecov
7070
if: contains(matrix.toxenv,'-cov')
71-
uses: codecov/codecov-action@v2
71+
uses: codecov/codecov-action@v3
7272
with:
7373
file: ./coverage.xml
7474

@@ -77,11 +77,11 @@ jobs:
7777
runs-on: ubuntu-latest
7878
steps:
7979
- name: Checkout code
80-
uses: actions/checkout@v2
80+
uses: actions/checkout@v3
8181
with:
8282
fetch-depth: 0
8383
- name: Set up Python
84-
uses: actions/setup-python@v2
84+
uses: actions/setup-python@v4
8585
with:
8686
python-version: 3.7
8787
- name: Run egg_info

0 commit comments

Comments
 (0)