@@ -113,17 +113,17 @@ runs:
113113 # https://github.com/actions/runner/issues/2473
114114 REF=${{ env.ACTION_REF || env.PR_REF || github.ref_name }}
115115 REPO=${{ env.ACTION_REPO || env.PR_REPO || github.repository }}
116- REPO_OWNER_ID =${{ env.PR_REPO_OWNER_ID || github.repository_owner_id }}
116+ REPO_ID =${{ env.PR_REPO_ID || github.repository_id }}
117117 echo "ref=$REF" >>"$GITHUB_OUTPUT"
118118 echo "repo=$REPO" >>"$GITHUB_OUTPUT"
119- echo "repo-owner- id=$REPO_OWNER_ID " >>"$GITHUB_OUTPUT"
119+ echo "repo-id=$REPO_ID " >>"$GITHUB_OUTPUT"
120120 shell : bash
121121 env :
122122 ACTION_REF : ${{ github.action_ref }}
123123 ACTION_REPO : ${{ github.action_repository }}
124124 PR_REF : ${{ github.event.pull_request.head.ref }}
125125 PR_REPO : ${{ github.event.pull_request.head.repo.full_name }}
126- PR_REPO_OWNER_ID : ${{ github.event.pull_request.base.repo.owner .id }}
126+ PR_REPO_ID : ${{ github.event.pull_request.base.repo.id }}
127127 - name : Check out action repo
128128 uses : actions/checkout@v4
129129 with :
@@ -138,7 +138,7 @@ runs:
138138 EVENT : ${{ github.event_name }}
139139 REF : ${{ steps.set-repo-and-ref.outputs.ref }}
140140 REPO : ${{ steps.set-repo-and-ref.outputs.repo }}
141- REPO_OWNER_ID : ${{ steps.set-repo-and-ref.outputs.repo-owner -id }}
141+ REPO_ID : ${{ steps.set-repo-and-ref.outputs.repo-id }}
142142 shell : bash
143143 working-directory : action-repo
144144 - name : Run Docker container
0 commit comments