Skip to content

Commit

Permalink
⬆️ Bump actions/upload-artifact from 2 to 4 (#254)
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v2...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Oct 31, 2024
1 parent 0ee57d0 commit 77cc40d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: |
jb build lectures --path-output ./
- name: Upload "_build" folder (cache)
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: build-cache
path: _build
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: |
jb build lectures --path-output ./ -W --keep-going
- name: Upload Execution Reports
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: failure()
with:
name: execution-reports
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: |
jb build lectures --path-output ./ --builder=custom --custom-builder=jupyter
zip -r download-notebooks.zip _build/jupyter
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: download-notebooks
path: download-notebooks.zip
Expand All @@ -60,7 +60,7 @@ jobs:
run: |
jb build lectures --path-output ./ -W --keep-going
- name: Upload Execution Reports
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: failure()
with:
name: execution-reports
Expand All @@ -72,7 +72,7 @@ jobs:
publish_dir: _build/html/
cname: datascience.quantecon.org
- name: Upload "_build" folder (cache)
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: build-publish
path: _build
Expand Down

0 comments on commit 77cc40d

Please sign in to comment.