This is an automated email from the ASF dual-hosted git repository.

laiyingchun pushed a commit to branch ci_refactor_more
in repository https://gitbox.apache.org/repos/asf/incubator-pegasus.git


The following commit(s) were added to refs/heads/ci_refactor_more by this push:
     new d951e3727 fix uses
d951e3727 is described below

commit d951e37276865805478ebf5671fa55c1a0e128d6
Author: Yingchun Lai <[email protected]>
AuthorDate: Fri Dec 22 16:44:09 2023 +0800

    fix uses
---
 .github/actions/download_artifact/action.yaml            | 2 +-
 .github/actions/rebuild_thirdparty_if_needed/action.yaml | 2 +-
 .github/workflows/regular-build.yml                      | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/actions/download_artifact/action.yaml 
b/.github/actions/download_artifact/action.yaml
index 29d68973c..d3e11369b 100644
--- a/.github/actions/download_artifact/action.yaml
+++ b/.github/actions/download_artifact/action.yaml
@@ -20,7 +20,7 @@ runs:
   using: composite
   steps:
     - name: Unpack prebuilt third-parties
-      uses: ".github/actions/unpack_prebuilt_thirdparties/action.yaml"
+      uses: ".github/actions/unpack_prebuilt_thirdparties"
     - name: Download tarball
       uses: actions/download-artifact@v3
       with:
diff --git a/.github/actions/rebuild_thirdparty_if_needed/action.yaml 
b/.github/actions/rebuild_thirdparty_if_needed/action.yaml
index 035ae47d5..8a04bc8cf 100644
--- a/.github/actions/rebuild_thirdparty_if_needed/action.yaml
+++ b/.github/actions/rebuild_thirdparty_if_needed/action.yaml
@@ -30,7 +30,7 @@ runs:
             - 'thirdparty/**'
     - name: Unpack prebuilt third-parties
       if: steps.changes.outputs.thirdparty == 'false'
-      uses: ".github/actions/unpack_prebuilt_thirdparties/action.yaml"
+      uses: ".github/actions/unpack_prebuilt_thirdparties"
     - name: Rebuild third-parties
       if: steps.changes.outputs.thirdparty == 'true'
       working-directory: thirdparty
diff --git a/.github/workflows/regular-build.yml 
b/.github/workflows/regular-build.yml
index da20c54d8..700ef7ce3 100644
--- a/.github/workflows/regular-build.yml
+++ b/.github/workflows/regular-build.yml
@@ -74,7 +74,7 @@ jobs:
       - name: Clone Apache Pegasus Source
         uses: actions/checkout@v3
       - name: Unpack prebuilt third-parties
-        uses: ".github/actions/unpack_prebuilt_thirdparties/action.yaml"
+        uses: ".github/actions/unpack_prebuilt_thirdparties"
       - name: Build Pegasus
         uses: "./.github/actions/build_pegasus"
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to