Skip to content

Commit 3b2afcb

Browse files
committed
increment versions of gh actions
1 parent 012c37c commit 3b2afcb

File tree

4 files changed

+24
-34
lines changed

4 files changed

+24
-34
lines changed

.github/workflows/deploy_docu_dev.yml

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,6 @@ jobs:
2626
repository: DoubleML/doubleml-for-py
2727
path: doubleml-for-py
2828

29-
- name: Install SSH Client for deploying the docu to github pages
30-
uses: webfactory/[email protected]
31-
with:
32-
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
33-
3429
- name: Install graphviz
3530
run: sudo apt-get install graphviz
3631

@@ -69,7 +64,7 @@ jobs:
6964
shell: Rscript {0}
7065

7166
- name: Cache R packages
72-
uses: actions/cache@v2
67+
uses: actions/cache@v3
7368
with:
7469
path: ${{ env.R_LIBS_USER }}
7570
key: doubleml-user-guide-dev-${{ hashFiles('.github/R-version') }}
@@ -87,13 +82,13 @@ jobs:
8782
make -C doc html # build docu
8883
8984
- name: Deploy to dev
90-
uses: JamesIves/github-pages-deploy-action@3.7.1
85+
uses: JamesIves/github-pages-deploy-action@v4
9186
with:
92-
REPOSITORY_NAME: DoubleML/doubleml.github.io
93-
BRANCH: main
94-
FOLDER: doc/_build/html
95-
TARGET_FOLDER: dev
96-
GIT_CONFIG_NAME: DoubleML Deploy Bot
97-
GIT_CONFIG_EMAIL: [email protected]
98-
CLEAN: true
99-
SSH: true
87+
repository-name: DoubleML/doubleml.github.io
88+
branch: main
89+
folder: doc/_build/html
90+
target-folder: dev
91+
git-config-name: DoubleML Deploy Bot
92+
git-config-email: [email protected]
93+
clean: true
94+
ssh-key: ${{ secrets.DEPLOY_KEY }}

.github/workflows/deploy_docu_stable.yml

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@ jobs:
1515
- name: Check out the repo containing the docu source
1616
uses: actions/checkout@v3
1717

18-
- name: Install SSH Client for deploying the docu to github pages
19-
uses: webfactory/[email protected]
20-
with:
21-
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
22-
2318
- name: Install graphviz
2419
run: sudo apt-get install graphviz
2520

@@ -55,7 +50,7 @@ jobs:
5550
shell: Rscript {0}
5651

5752
- name: Cache R packages
58-
uses: actions/cache@v2
53+
uses: actions/cache@v3
5954
with:
6055
path: ${{ env.R_LIBS_USER }}
6156
key: doubleml-user-guide-stable-${{ hashFiles('.github/R-version') }}
@@ -73,13 +68,13 @@ jobs:
7368
make -C doc html # build docu
7469
7570
- name: Deploy to stable
76-
uses: JamesIves/github-pages-deploy-action@3.7.1
71+
uses: JamesIves/github-pages-deploy-action@v4
7772
with:
78-
REPOSITORY_NAME: DoubleML/doubleml.github.io
79-
BRANCH: main
80-
FOLDER: doc/_build/html
81-
TARGET_FOLDER: stable
82-
GIT_CONFIG_NAME: DoubleML Deploy Bot
83-
GIT_CONFIG_EMAIL: [email protected]
84-
CLEAN: true
85-
SSH: true
73+
repository-name: DoubleML/doubleml.github.io
74+
branch: main
75+
folder: doc/_build/html
76+
target-folder: stable
77+
git-config-name: DoubleML Deploy Bot
78+
git-config-email: [email protected]
79+
clean: true
80+
ssh-key: ${{ secrets.DEPLOY_KEY }}

.github/workflows/test_build_docu_dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
shell: Rscript {0}
8888

8989
- name: Cache R packages
90-
uses: actions/cache@v2
90+
uses: actions/cache@v3
9191
with:
9292
path: ${{ env.R_LIBS_USER }}
9393
key: doubleml-test-build-dev-${{ hashFiles('.github/R-version') }}
@@ -119,7 +119,7 @@ jobs:
119119
make -C doc linkcheck
120120
121121
- name: Upload html artifacts
122-
uses: actions/upload-artifact@v2
122+
uses: actions/upload-artifact@v3
123123
with:
124124
name: build_html
125125
path: doc/_build/html/

.github/workflows/test_build_docu_released.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
shell: Rscript {0}
5959

6060
- name: Cache R packages
61-
uses: actions/cache@v2
61+
uses: actions/cache@v3
6262
with:
6363
path: ${{ env.R_LIBS_USER }}
6464
key: doubleml-test-build-stable-${{ hashFiles('.github/R-version') }}
@@ -80,7 +80,7 @@ jobs:
8080
make -C doc linkcheck
8181
8282
- name: Upload html artifacts
83-
uses: actions/upload-artifact@v2
83+
uses: actions/upload-artifact@v3
8484
with:
8585
name: build_html
8686
path: doc/_build/html/

0 commit comments

Comments
 (0)