From 16046287e28c59011e52f91b0d669209fdae259d Mon Sep 17 00:00:00 2001 From: Harrison Katz Date: Mon, 25 Nov 2024 10:59:20 -0500 Subject: [PATCH] With local path --- .github/workflows/ci.yaml | 4 ++-- .github/workflows/test.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b66f6ce0..544b0d9b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,7 +20,7 @@ jobs: pull-requests: read steps: - uses: actions/checkout@v3 - - uses: ".github/actions/changes.yaml" + - uses: ".github/actions/changes" # Make sure that Kubebuilder autogenerated files are up to date. kubebuilder-diff: @@ -97,7 +97,7 @@ jobs: pull-requests: read steps: - uses: actions/checkout@v3 - - uses: ".github/actions/build-and-test.yaml" + - uses: "./.github/actions/build-and-test" with: # this workflow is for incoming PRs, so we want to skip e2e tests # and deploy the demo mode because our api keys are not available diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index cc67a385..27363a6b 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -17,7 +17,7 @@ jobs: pull-requests: read steps: - uses: actions/checkout@v3 - - uses: ".github/actions/changes.yaml" + - uses: "./.github/actions/changes" build-and-test: runs-on: ubuntu-latest @@ -35,7 +35,7 @@ jobs: pull-requests: read steps: - uses: actions/checkout@v3 - - uses: ".github/actions/build-and-test.yaml" + - uses: "./.github/actions/build-and-test" with: run-e2e: true go-version: ${{ env.GO_VERSION }}