Skip to content

Commit d458161

Browse files
committed
Update versions of tools used for code coverage
1 parent 11c8914 commit d458161

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/coverage.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ on: [push, pull_request]
33
jobs:
44
linux:
55
name: linux
6-
runs-on: ubuntu-20.04
6+
runs-on: ubuntu-22.04
77
steps:
88
- name: Install ctags
99
run: |
1010
sudo apt update && sudo apt install -y universal-ctags
1111
- name: Checkout Code
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v3
1313
- name: Setup Vim
1414
uses: rhysd/action-setup-vim@v1
1515
id: vim
@@ -24,9 +24,9 @@ jobs:
2424
cd ./test
2525
./run_tests.sh
2626
- name: Install Python
27-
uses: actions/setup-python@v2
27+
uses: actions/setup-python@v3
2828
with:
29-
python-version: 3.5
29+
python-version: 3.7.14
3030
- name: Install covimerage
3131
run: |
3232
pip install covimerage
@@ -41,7 +41,7 @@ jobs:
4141
coverage report
4242
coverage xml
4343
- name: Upload coverage to codecov
44-
uses: codecov/codecov-action@v2
44+
uses: codecov/codecov-action@v3
4545
with:
4646
token: ${{ secrets.CODECOV_TOKEN }}
4747
file: ./test/coverage.xml

0 commit comments

Comments
 (0)