@@ -113,17 +113,17 @@ runs:
113
113
# https://github.com/actions/runner/issues/2473
114
114
REF=${{ env.ACTION_REF || env.PR_REF || github.ref_name }}
115
115
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 }}
117
117
echo "ref=$REF" >>"$GITHUB_OUTPUT"
118
118
echo "repo=$REPO" >>"$GITHUB_OUTPUT"
119
- echo "repo-owner- id=$REPO_OWNER_ID " >>"$GITHUB_OUTPUT"
119
+ echo "repo-id=$REPO_ID " >>"$GITHUB_OUTPUT"
120
120
shell : bash
121
121
env :
122
122
ACTION_REF : ${{ github.action_ref }}
123
123
ACTION_REPO : ${{ github.action_repository }}
124
124
PR_REF : ${{ github.event.pull_request.head.ref }}
125
125
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 }}
127
127
- name : Check out action repo
128
128
uses : actions/checkout@v4
129
129
with :
@@ -138,7 +138,7 @@ runs:
138
138
EVENT : ${{ github.event_name }}
139
139
REF : ${{ steps.set-repo-and-ref.outputs.ref }}
140
140
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 }}
142
142
shell : bash
143
143
working-directory : action-repo
144
144
- name : Run Docker container
0 commit comments