Skip to content

Commit 2c707d4

Browse files
committed
Change workflow to checkout config as well.
1 parent 970d0ae commit 2c707d4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/action_scanning.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,12 @@ jobs:
2525
steps:
2626
- name: Checkout Workflow Config
2727
uses: actions/checkout@v4
28+
env:
29+
GH_ACTION_REPOSITORY: ${{ github.action_repository }}
30+
GH_ACTION_REF: ${{ github.action_ref }}
2831
with:
29-
repository: ${github.action_repository}
32+
repository: '${{ env.GH_ACTION_REPOSITORY }}'
33+
ref: '${{ env.GH_ACTION_REF }}'
3034
path: action_scanning
3135

3236
- name: Checkout Code

0 commit comments

Comments
 (0)