From 2e28d089b5d097812719475e553075fe68e2bff6 Mon Sep 17 00:00:00 2001 From: Barry Gordon Date: Wed, 23 Feb 2022 12:29:55 +0000 Subject: [PATCH] Properly pass outputs between jobs for dependabot builds --- .github/workflows/dependabot-build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/dependabot-build.yml b/.github/workflows/dependabot-build.yml index 28c1631..5962e97 100644 --- a/.github/workflows/dependabot-build.yml +++ b/.github/workflows/dependabot-build.yml @@ -11,6 +11,9 @@ jobs: fetch-dependabot-metadata: runs-on: ubuntu-latest if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }} + # Map the step output to a job output for subsequent jobs + outputs: + dependency-type: ${{ steps.dependabot-metadata.outputs.dependency-type }} steps: - name: Fetch dependabot metadata id: dependabot-metadata