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 }}