@@ -40,9 +40,16 @@ outputs:
4040runs :
4141 using : " composite"
4242 steps :
43+ - name : Make sub-actions referenceable
44+ working-directory : ${{ github.action_path }}
45+ shell : bash
46+ run : |
47+ mkdir -p /home/runner/work/_actions/current/.github/actions
48+ rsync -a .github/actions/ /home/runner/work/_actions/current/.github/actions/
49+ ls -ltra /home/runner/work/_actions/current/.github/actions
4350 - name : Restore cached results
4451 id : restore
45- uses : ./.github/actions/gh-cache/cache
52+ uses : ./../../_actions/current/. github/actions/gh-cache/cache
4653 with :
4754 key : ${{ inputs.cache_key }}
4855 token : ${{ inputs.token }}
@@ -59,20 +66,20 @@ runs:
5966 - if : ${{ inputs.login_url && inputs.username && inputs.password && !inputs.auth_context }}
6067 name : Authenticate
6168 id : auth
62- uses : ./.github/actions/auth
69+ uses : ./../../_actions/current/. github/actions/auth
6370 with :
6471 login_url : ${{ inputs.login_url }}
6572 username : ${{ inputs.username }}
6673 password : ${{ inputs.password }}
6774 - name : Find
6875 id : find
69- uses : ./.github/actions/find
76+ uses : ./../../_actions/current/. github/actions/find
7077 with :
7178 urls : ${{ inputs.urls }}
7279 auth_context : ${{ inputs.auth_context || steps.auth.outputs.auth_context }}
7380 - name : File
7481 id : file
75- uses : ./.github/actions/file
82+ uses : ./../../_actions/current/. github/actions/file
7683 with :
7784 findings : ${{ steps.find.outputs.findings }}
7885 repository : ${{ inputs.repository }}
8996 - if : ${{ inputs.skip_copilot_assignment != 'true' }}
9097 name : Fix
9198 id : fix
92- uses : ./.github/actions/fix
99+ uses : ./../../_actions/current/. github/actions/fix
93100 with :
94101 issues : ${{ steps.get_issues_from_filings.outputs.issues }}
95102 repository : ${{ inputs.repository }}
@@ -119,7 +126,7 @@ runs:
119126 FILINGS : ${{ steps.file.outputs.filings }}
120127 FIXINGS : ${{ steps.fix.outputs.fixings }}
121128 - name : Save cached results
122- uses : ./.github/actions/gh-cache/cache
129+ uses : ./../../_actions/current/. github/actions/gh-cache/cache
123130 with :
124131 key : ${{ inputs.cache_key }}
125132 value : ${{ steps.results.outputs.results }}
0 commit comments