Skip to content

Commit

Permalink
build(deps): bump actions/upload-artifact from 3 to 4 (#2059)
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] authored Dec 19, 2023
1 parent a751831 commit b82c1fa
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ jobs:
- name: Run Build
run: make build
- name: Upload Distribution Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pypi-dist
path: dist
6 changes: 3 additions & 3 deletions .github/workflows/on-push-pyinstaller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Run Build
run: make build-pyinstaller-file
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pyinstaller-onefile-${{ matrix.os }}
path: artifacts
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
- name: Run Build
run: make build-pyinstaller-folder
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pyinstaller-onefolder-${{ matrix.os }}
path: artifacts
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
run: echo "A pre-production version was not published because the current commit is tagged for release."
- name: Upload Artifacts
if: steps.check_distance.outcome == 'success'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: npm-pack
path: artifacts
8 changes: 4 additions & 4 deletions .github/workflows/publish-on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Run Build
run: make build-pyinstaller-file
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pyinstaller-onefile-${{ matrix.os }}
path: artifacts
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
- name: Run Build
run: make build-pyinstaller-folder
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pyinstaller-onefolder-${{ matrix.os }}
path: artifacts
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
rm -rf artifacts && mkdir -p artifacts
find . -name 'onica-runway-*.*.*.tgz' -exec mv {} artifacts/ \;
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: npm-pack
path: artifacts
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
- name: Run Build
run: make build
- name: Upload Distribution Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pypi-dist
path: dist
Expand Down

0 comments on commit b82c1fa

Please sign in to comment.