diff options
author | 2023-12-18 16:12:19 +0000 | |
---|---|---|
committer | 2023-12-18 16:12:19 +0000 | |
commit | b404a9cfd132282f9b0949d0d5083f9425280439 (patch) | |
tree | b9632dab4c400d36c4c1d5dbaff375fa86044e52 | |
parent | e53624c26396019849e10374eacaf416b11c4e5a (diff) | |
download | rtic-dependabot/github_actions/actions/upload-artifact-4.tar.gz rtic-dependabot/github_actions/actions/upload-artifact-4.tar.zst rtic-dependabot/github_actions/actions/upload-artifact-4.zip |
Bump actions/upload-artifact from 3 to 4dependabot/github_actions/actions/upload-artifact-4
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v3...v4)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r-- | .github/workflows/build.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 58aaf7d0..6754a56c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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 @@ -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 @@ -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 |