Skip to content

Commit e8bdcf6

Browse files
committed
fix: use full repo paths for sub-action references
Composite actions resolve `./path` relative to the caller's repo, not the action's own repo. Use harmont-dev/actions-hm/sub@main instead.
1 parent 6857e6d commit e8bdcf6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@ runs:
7878
- name: Setup Harmont
7979
if: inputs.hm-path == ''
8080
id: setup
81-
uses: ./setup
81+
uses: harmont-dev/actions-hm/setup@main
8282
with:
8383
version: ${{ inputs.version }}
8484
token: ${{ inputs.token }}
8585

8686
# --- Cache Restore ---
8787
- name: Restore Docker cache
8888
if: inputs.cache == 'true'
89-
uses: ./cache-restore
89+
uses: harmont-dev/actions-hm/cache-restore@main
9090
with:
9191
registry: ${{ inputs.cache-registry }}
9292
registry-prefix: ${{ inputs.cache-registry-prefix }}
@@ -120,7 +120,7 @@ runs:
120120
# --- Cache Save ---
121121
- name: Save Docker cache
122122
if: always() && inputs.cache == 'true'
123-
uses: ./cache-save
123+
uses: harmont-dev/actions-hm/cache-save@main
124124
with:
125125
registry: ${{ inputs.cache-registry }}
126126
registry-prefix: ${{ inputs.cache-registry-prefix }}

0 commit comments

Comments
 (0)