From 71fac3c58776ac9d97375b75ca321056e845759c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 05:10:09 +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/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 75aa2f627..056025264 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -182,7 +182,7 @@ jobs: # DEB Package - name: Upload the DEB package artifact (RelWithDebInfo only) if: matrix.build_type == 'RelWithDebInfo' && runner.os == 'Linux' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.DEB_PACKAGE_NAME }} path: ${{ env.DEB_PACKAGE_PATH }} @@ -196,7 +196,7 @@ jobs: # RPM Package - name: Upload the RPM package artifact (RelWithDebInfo only) if: matrix.build_type == 'RelWithDebInfo' && runner.os == 'Linux' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.RPM_PACKAGE_NAME }} path: ${{ env.RPM_PACKAGE_PATH }} @@ -209,7 +209,7 @@ jobs: # TGZ Package - name: Upload the TGZ package artifact (RelWithDebInfo only) if: matrix.build_type == 'RelWithDebInfo' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.TGZ_PACKAGE_NAME }} path: ${{ env.TGZ_PACKAGE_PATH }}