Skip to content

Commit

Permalink
fix(ci): artifact@v3 -> artifact@v4 (#98)
Browse files Browse the repository at this point in the history
### Briefly, what does this PR introduce?
Upgrade {upload,download}-artifact@v3 to v4.
https://github.com/actions/upload-artifact/blob/main/docs/MIGRATION.md
  • Loading branch information
wdconinc authored Nov 6, 2024
1 parent 9f0067b commit 064fe9b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/linux-eic-shell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
PREFIX=${PWD}/install
cmake -B build -S . -DCMAKE_INSTALL_PREFIX=${PREFIX}
cmake --build build -- install
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build-eic-shell
path: build/
if-no-files-found: error
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: install-eic-shell
path: install/
Expand Down Expand Up @@ -75,14 +75,14 @@ jobs:
# FIXME hard-coded: see https://github.com/actions/upload-pages-artifact/pull/14
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build-eic-shell
path: build/
- run: |
apk add doxygen graphviz
doxygen build/Doxyfile
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: docs-eic-shell
path: build/docs/html/
Expand Down

0 comments on commit 064fe9b

Please sign in to comment.