From 47276cd66a83fd7f2da1eb3357181b8bfcc5c6fa Mon Sep 17 00:00:00 2001 From: Stu Hood Date: Tue, 14 Jul 2026 15:56:16 -0700 Subject: [PATCH] Use new version of https://github.com/paradedb/actions to avoid hardcoding remote names. --- .github/workflows/sync-promote-branch.yml | 2 +- .github/workflows/sync-upstream-rebase.yml | 2 +- scripts/sync-upstream.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync-promote-branch.yml b/.github/workflows/sync-promote-branch.yml index e3d90de7..604fbe43 100644 --- a/.github/workflows/sync-promote-branch.yml +++ b/.github/workflows/sync-promote-branch.yml @@ -19,7 +19,7 @@ concurrency: jobs: call-promote: - uses: paradedb/actions/.github/workflows/reusable-promote.yml@v4 + uses: paradedb/actions/.github/workflows/reusable-promote.yml@v5 with: branch_name: ${{ inputs.branch_name }} approvers: "philippemnoel,rebasedming,stuhood,mdashti" diff --git a/.github/workflows/sync-upstream-rebase.yml b/.github/workflows/sync-upstream-rebase.yml index 44aaac03..73a21010 100644 --- a/.github/workflows/sync-upstream-rebase.yml +++ b/.github/workflows/sync-upstream-rebase.yml @@ -17,7 +17,7 @@ concurrency: jobs: call-rebase: - uses: paradedb/actions/.github/workflows/reusable-rebase.yml@v4 + uses: paradedb/actions/.github/workflows/reusable-rebase.yml@v5 with: github_app_client_id: ${{ vars.PARADEDB_GITHUB_APP_CLIENT_ID }} secrets: diff --git a/scripts/sync-upstream.sh b/scripts/sync-upstream.sh index 08652ede..afce1f42 100755 --- a/scripts/sync-upstream.sh +++ b/scripts/sync-upstream.sh @@ -14,7 +14,7 @@ export UPSTREAM_BRANCH="main" # 2. Define the URL to the centralized script # Using the raw content URL from the central repository -CORE_SCRIPT_URL="https://raw.githubusercontent.com/paradedb/actions/v4/scripts/sync-core.sh" +CORE_SCRIPT_URL="https://raw.githubusercontent.com/paradedb/actions/v5/scripts/sync-core.sh" # 3. Download and source the core logic as an API TMP_SCRIPT=$(mktemp)