Skip to content

Commit d7d56a9

Browse files
authored
Merge pull request #178 from DoubleML/m-incr-actions-checkout-setuppy
increment actions versions
2 parents d786d58 + b7fd9f2 commit d7d56a9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/deploy_pkg.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
with:
1717
persist-credentials: false
1818

1919
- name: Install python
20-
uses: actions/setup-python@v2
20+
uses: actions/setup-python@v4
2121
with:
2222
python-version: '3.8'
2323

@@ -32,7 +32,7 @@ jobs:
3232
pip install wheel
3333
python setup.py sdist bdist_wheel
3434
35-
- uses: actions/upload-artifact@v2
35+
- uses: actions/upload-artifact@v3
3636
with:
3737
name: DoubleML-pkg
3838
path: dist/

.github/workflows/pytest.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ jobs:
3131
- {os: 'ubuntu-latest', python-version: '3.10'}
3232

3333
steps:
34-
- uses: actions/checkout@v2
34+
- uses: actions/checkout@v3
3535
with:
3636
fetch-depth: 2
3737
- name: Set up Python ${{ matrix.config.python-version }}
38-
uses: actions/setup-python@v2
38+
uses: actions/setup-python@v4
3939
with:
4040
python-version: ${{ matrix.config.python-version }}
4141
- name: Install OpenMP runtime for unit tests with xgboost learners
@@ -73,7 +73,7 @@ jobs:
7373
if: |
7474
matrix.config.os == 'ubuntu-latest' &&
7575
matrix.config.python-version == '3.8'
76-
uses: codecov/codecov-action@v2
76+
uses: codecov/codecov-action@v3
7777
with:
7878
file: ./coverage.xml
7979
flags: unittests
@@ -82,7 +82,7 @@ jobs:
8282
if: |
8383
matrix.config.os == 'ubuntu-latest' &&
8484
matrix.config.python-version == '3.8'
85-
uses: codacy/codacy-coverage-reporter-action@master
85+
uses: codacy/codacy-coverage-reporter-action@v1
8686
with:
8787
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
8888
coverage-reports: ./coverage.xml

0 commit comments

Comments
 (0)