Skip to content

Commit 88add71

Browse files
authored
update artifact actions to v4
1 parent e03a8aa commit 88add71

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
PYLINT_SCORE=$(sed -n 's/^Your code has been rated at \([-0-9.]*\)\/.*/\1/p' ./pylint/pylint.log)
7474
anybadge --label=Pylint --file=pylint/pylint.svg --value=$PYLINT_SCORE 2=red 4=orange 8=yellow 10=green
7575
- name: Upload linting artifact
76-
uses: actions/upload-artifact@v3
76+
uses: actions/upload-artifact@v4
7777
with:
7878
name: linting
7979
path: ./pylint
@@ -95,7 +95,7 @@ jobs:
9595
- name: Build with Sphinx
9696
run: cd doc && make html
9797
- name: Upload documentation artifact
98-
uses: actions/upload-artifact@v3
98+
uses: actions/upload-artifact@v4
9999
with:
100100
name: documentation
101101
path: ./doc/_build/html
@@ -105,12 +105,12 @@ jobs:
105105
needs: [documentation, linting]
106106
steps:
107107
- name: Download documentation artifact
108-
uses: actions/download-artifact@v3
108+
uses: actions/download-artifact@v4
109109
with:
110110
name: documentation
111111
path: ./html
112112
- name: Download linting artifact
113-
uses: actions/download-artifact@v3
113+
uses: actions/download-artifact@v4
114114
with:
115115
name: linting
116116
path: ./html
@@ -123,4 +123,4 @@ jobs:
123123
- name: Deploy to GitHub Pages
124124
id: deployment
125125
uses: actions/deploy-pages@v2
126-
126+

0 commit comments

Comments
 (0)