Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4 (#7)
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@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>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Feb 25, 2024
1 parent de5a759 commit 3c5ac18
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: pipx run twine check dist/*

- name: Archive wheel
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheel
path: ${{ github.workspace }}/dist/
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
run: circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --package_folder_prefix ${{ steps.pkg-name.outputs.pkg-name }} --library_location .

- name: Archive bundles
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: bundles
path: ${{ github.workspace }}/bundles/
Expand All @@ -132,7 +132,7 @@ jobs:
run: sphinx-build -E -W -b html . _build/html

- name: Archive docs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: docs
path: ${{ github.workspace }}/docs/_build/html
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:

- name: Archive bundles
if: github.event_name == 'workflow_dispatch'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: bundles
path: ${{ github.workspace }}/bundles/
Expand Down

0 comments on commit 3c5ac18

Please sign in to comment.