Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/upload-artifact from 3 to 4 #868

Merged
merged 1 commit into from
Jan 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ jobs:
tar -cf apidocs.tar apidocs

- name: Store the API docs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: apidocs
path: apidocs.tar
Expand Down Expand Up @@ -357,7 +357,7 @@ jobs:
tar -cf book.tar bookroot

- name: Store the Book + API docs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: book
path: book.tar
Expand Down Expand Up @@ -433,7 +433,7 @@ jobs:
tar -cf mdbookold.tar mdbookold

- name: Store the old API docs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: mdbookold
path: mdbookold.tar
Expand Down Expand Up @@ -616,7 +616,7 @@ jobs:
tar -cf bookstodeploy.tar bookstodeploy

- name: Store the books
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: bookstodeploy
path: bookstodeploy.tar
Expand Down
Loading