Commit 56022bb
authored
ci: bump paradedb/actions to v8 for the upstream sync (#42)
## What
Bump the three `paradedb/actions` references used by the upstream sync
from `v7` to `v8`:
- `.github/workflows/sync-upstream-rebase.yml` —
`reusable-rebase.yml@v7` → `@v8`
- `.github/workflows/sync-promote-branch.yml` —
`reusable-promote.yml@v7` → `@v8`
- `scripts/sync-upstream.sh` — `.../actions/v7/scripts/sync-core.sh` →
`.../v8/...`
## Why
The scheduled **Upstream Rebase** was failing when the runner hit `No
space left on device`: the reusable workflow checked out with
`fetch-depth: 0` and then did a bare `git fetch`, pulling *every* branch
and its unrelated history and filling the runner disk. `v8` fixes this
with `fetch-depth: 1` plus a `fetch_branch` helper that fetches only the
target and upstream `main` branches (paradedb/actions#8). It also adds a
`range-diff` subcommand (paradedb/actions#11).
## Note
All three references must move together — `sync-upstream.sh` downloads
`sync-core.sh` from the version path, so bumping just the workflow refs
would still execute the old core script. The `v8` tag is already
published (signed/verified) on `paradedb/actions`.
https://claude.ai/code/session_016i7usbUvUuBwHsv13uaa4S1 parent 92571e4 commit 56022bb
3 files changed
Lines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
| 22 | + | |
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
| 20 | + | |
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
17 | | - | |
| 17 | + | |
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| |||
0 commit comments