From 2e21119ddf4fbf8d15d9fb8842d4ecd491e89a05 Mon Sep 17 00:00:00 2001 From: Justin Kolberg Date: Thu, 28 Sep 2023 12:21:15 -0700 Subject: [PATCH] fix: set workflow filename Signed-off-by: Justin Kolberg --- .github/workflows/_reusable_build_package.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/_reusable_build_package.yml b/.github/workflows/_reusable_build_package.yml index 53e48cb6..1a25490e 100644 --- a/.github/workflows/_reusable_build_package.yml +++ b/.github/workflows/_reusable_build_package.yml @@ -131,12 +131,14 @@ jobs: # attempt to fetch the artifacts from a GitHub Release matching # otc_version and otc_sumo_version. - name: Download artifacts from sumologic-otel-collector - uses: dawidd6/action-download-artifact@v2.24.3 + uses: dawidd6/action-download-artifact@v2.28.0 if: inputs.workflow_id != '' with: github_token: ${{ secrets.gh_artifacts_token }} repo: SumoLogic/sumologic-otel-collector run_id: ${{ inputs.workflow_id }} + workflow: dev_builds.yml + workflow_conclusion: success name: ${{ steps.otc-bin.outputs.path }} path: ./build/gh-artifacts if_no_artifact_found: fail @@ -211,12 +213,14 @@ jobs: # will be made to fetch the artifacts from a GitHub Release matching # otc_version and otc_sumo_version. - name: Download artifacts from sumologic-otel-collector - uses: dawidd6/action-download-artifact@v2.24.3 + uses: dawidd6/action-download-artifact@v2.28.0 if: inputs.workflow_id != '' with: github_token: ${{ secrets.gh_artifacts_token }} repo: SumoLogic/sumologic-otel-collector run_id: ${{ inputs.workflow_id }} + workflow: dev_builds.yml + workflow_conclusion: success name: otelcol-sumo-windows_${{ inputs.goarch }}.exe path: ./build/artifacts if_no_artifact_found: fail