Skip to content

Commit f17bc08

Browse files
authored
fix: Fix relative paths to helper actions (#100)
* fix: Fix relative paths to helper actions * Fix merge conflict
1 parent 270aa68 commit f17bc08

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/buildpack-integration-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
- name: Resolve latest conformance test client version
7575
if: ${{ inputs.conformance-client-version == 'latest' }}
7676
id: conformance-client-latest
77-
uses: ./actions/client/resolve-latest
77+
uses: ./.github/actions/client/resolve-latest
7878
- name: Set conformance test client version from latest
7979
if: ${{ inputs.conformance-client-version == 'latest' }}
8080
run: echo CLIENT_VERSION=${{ steps.conformance-client-latest.outputs.version }} >> $GITHUB_ENV
@@ -92,7 +92,7 @@ jobs:
9292
# Cache miss, need to download conformance test client using Go tooling
9393
- name: Download conformance test client
9494
if: ${{ steps.check-for-cached-client.outputs.cache-hit != 'true' }}
95-
uses: ./actions/client/install
95+
uses: ./.github/actions/client/install
9696
with:
9797
client-version: ${{ env.CLIENT_VERSION }}
9898
cache-key: ${{ steps.set-cached-client-version.outputs.key }}
@@ -138,4 +138,4 @@ jobs:
138138
-builder-target=${{ matrix.builder-target }} \
139139
-builder-runtime=${{ inputs.builder-runtime }} \
140140
-builder-tag=${{ inputs.builder-tag }} \
141-
-validate-mapping=false
141+
-validate-mapping=false

0 commit comments

Comments
 (0)