From 567456e2d4fe0cfff45d097ad65149ebaab8aefd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 15:55:16 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 3 to 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] --- .github/workflows/cicd.yml | 2 +- .github/workflows/on-push-pyinstaller.yml | 6 +++--- .github/workflows/publish-on-release.yml | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index d0d0e54d4..b3ecac34c 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -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 diff --git a/.github/workflows/on-push-pyinstaller.yml b/.github/workflows/on-push-pyinstaller.yml index 87033269b..82feb4f9a 100644 --- a/.github/workflows/on-push-pyinstaller.yml +++ b/.github/workflows/on-push-pyinstaller.yml @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/publish-on-release.yml b/.github/workflows/publish-on-release.yml index aee5421f6..89ace4c66 100644 --- a/.github/workflows/publish-on-release.yml +++ b/.github/workflows/publish-on-release.yml @@ -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 @@ -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 @@ -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 @@ -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