Skip to content

Commit 12c58dc

Browse files
committed
Merge branch 'main' of github.com:DoubleML/doubleml-for-py into m-run-ci-py-3-11
2 parents 773ceb1 + d7d56a9 commit 12c58dc

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
@@ -32,11 +32,11 @@ jobs:
3232
- {os: 'ubuntu-latest', python-version: '3.11'}
3333

3434
steps:
35-
- uses: actions/checkout@v2
35+
- uses: actions/checkout@v3
3636
with:
3737
fetch-depth: 2
3838
- name: Set up Python ${{ matrix.config.python-version }}
39-
uses: actions/setup-python@v2
39+
uses: actions/setup-python@v4
4040
with:
4141
python-version: ${{ matrix.config.python-version }}
4242
- name: Install OpenMP runtime for unit tests with xgboost learners
@@ -74,7 +74,7 @@ jobs:
7474
if: |
7575
matrix.config.os == 'ubuntu-latest' &&
7676
matrix.config.python-version == '3.8'
77-
uses: codecov/codecov-action@v2
77+
uses: codecov/codecov-action@v3
7878
with:
7979
file: ./coverage.xml
8080
flags: unittests
@@ -83,7 +83,7 @@ jobs:
8383
if: |
8484
matrix.config.os == 'ubuntu-latest' &&
8585
matrix.config.python-version == '3.8'
86-
uses: codacy/codacy-coverage-reporter-action@master
86+
uses: codacy/codacy-coverage-reporter-action@v1
8787
with:
8888
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
8989
coverage-reports: ./coverage.xml

0 commit comments

Comments
 (0)