Skip to content

Commit

Permalink
Use upload-artifact and download-artifact v4 since v3 is deprecated (E…
Browse files Browse the repository at this point in the history
…Verest#210)

Signed-off-by: Kai-Uwe Hermann <[email protected]>
  • Loading branch information
hikinggrass authored Nov 11, 2024
1 parent b5be538 commit 028885d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy-everest-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
working-directory: everest-workspace

- name: Upload snapshot file
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: snapshot-file
path: |
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
# Setup workspace
- name: Download snaphot file
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: snapshot-file
path: |
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
working-directory: everest-workspace/everest/docs
- name: Upload generated html files
if: ${{ inputs.build_html }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: docs-html
path: everest-workspace/everest/docs/_build/html/
Expand All @@ -221,7 +221,7 @@ jobs:
working-directory: everest-workspace/everest/docs
- name: Upload generated pdf files
if: ${{ inputs.build_pdf }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: docs-pdf
path: everest-workspace/everest/docs/_build/latex/
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
git config --global user.name "Github Service Account"
- name: Download generated html files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: docs-html
path: docs-html
Expand All @@ -267,7 +267,7 @@ jobs:
ref: main
fetch-depth: 0
- name: Download snapshot file
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: snapshot-file
path: |
Expand Down

0 comments on commit 028885d

Please sign in to comment.