Skip to content

Commit

Permalink
ci(deps): bump actions/upload-artifact and actions/download-artifact …
Browse files Browse the repository at this point in the history
…from 3 to 4 in /.github/workflows (#129)

* chore(deps): bump actions/download-artifact in /.github/workflows

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.1.7.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v3...v4.1.7)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* ci: fix upload actions

* ci: update cd steps to match version

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Leonard <92177433+LeonardHd@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and LeonardHd authored Sep 5, 2024
1 parent 10ab4c6 commit 3462ff1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
- name: Check out repository
uses: actions/checkout@v4
- name: Download sdist
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: sdist
path: dist
- name: Download whl
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: whl
path: dist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ jobs:
env:
BUILD_VERSION: ${{ needs.version.outputs.version }}
- name: Upload dist
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: whl
path: dist/*.whl
- name: Upload sdist
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: sdist
path: dist/*.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
with:
dotnet-version: ${{ inputs.dotnet-version }}
- name: Download dist
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.dist }}
path: dist
Expand Down

0 comments on commit 3462ff1

Please sign in to comment.