Skip to content

Commit 012c37c

Browse files
committed
increment actions versions for setup-python and checkout (fixes #105)
1 parent 007a001 commit 012c37c

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/deploy_docu_dev.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818

1919
steps:
2020
- name: Check out the repo containing the docu source
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v3
2222

2323
- name: Check out the repo containing the python pkg DoubleML (dev)
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v3
2525
with:
2626
repository: DoubleML/doubleml-for-py
2727
path: doubleml-for-py
@@ -35,7 +35,7 @@ jobs:
3535
run: sudo apt-get install graphviz
3636

3737
- name: Install python
38-
uses: actions/setup-python@v2
38+
uses: actions/setup-python@v4
3939
with:
4040
python-version: '3.8'
4141
- name: Install dependencies and the python package

.github/workflows/deploy_docu_stable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Check out the repo containing the docu source
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717

1818
- name: Install SSH Client for deploying the docu to github pages
1919
uses: webfactory/[email protected]
@@ -24,7 +24,7 @@ jobs:
2424
run: sudo apt-get install graphviz
2525

2626
- name: Install python
27-
uses: actions/setup-python@v2
27+
uses: actions/setup-python@v4
2828
with:
2929
python-version: '3.8'
3030
- name: Install dependencies and the python package

.github/workflows/test_build_docu_dev.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@ jobs:
3232

3333
steps:
3434
- name: Check out the repo containing the docu source
35-
uses: actions/checkout@v2
35+
uses: actions/checkout@v3
3636

3737
- name: Check out the repo containing the python pkg DoubleML (dev)
3838
if: ${{ github.event_name != 'workflow_dispatch' }}
39-
uses: actions/checkout@v2
39+
uses: actions/checkout@v3
4040
with:
4141
repository: DoubleML/doubleml-for-py
4242
path: doubleml-for-py
4343

4444
- name: Check out the repo containing the python pkg DoubleML (dev)
4545
if: ${{ github.event_name == 'workflow_dispatch' }}
46-
uses: actions/checkout@v2
46+
uses: actions/checkout@v3
4747
with:
4848
repository: DoubleML/doubleml-for-py
4949
path: doubleml-for-py
@@ -53,7 +53,7 @@ jobs:
5353
run: sudo apt-get install graphviz
5454

5555
- name: Install python
56-
uses: actions/setup-python@v2
56+
uses: actions/setup-python@v4
5757
with:
5858
python-version: '3.8'
5959
- name: Install dependencies and the python package

.github/workflows/test_build_docu_released.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121

2222
steps:
2323
- name: Check out the repo containing the docu source
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v3
2525

2626
- name: Install graphviz
2727
run: sudo apt-get install graphviz
2828

2929
- name: Install python
30-
uses: actions/setup-python@v2
30+
uses: actions/setup-python@v4
3131
with:
3232
python-version: '3.8'
3333
- name: Install dependencies and the python package

0 commit comments

Comments
 (0)