Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
legacy_pg: ${{ steps.pg.outputs.legacy_pg }}
steps:
- name: Check out the repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# Full history needed so BASE and HEAD below are both reachable
# for `git diff`.
Expand Down Expand Up @@ -330,7 +330,7 @@ jobs:
- name: Start PostgreSQL ${{ matrix.pg }}
run: pg-start ${{ matrix.pg }}
- name: Check out the repo
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install rsync and server headers
# postgresql-server-dev-NN provides catalog/pg_class.h, which
# test/gen-relkinds.sh reads for the relkind drift check in
Expand Down Expand Up @@ -393,7 +393,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Lint SQL
run: make lint

Expand All @@ -408,7 +408,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Confirm ci.yml / claude-code-review.yml still match cancel-on-close.yml's assumptions
run: |
python3 - <<'PY'
Expand Down Expand Up @@ -550,7 +550,7 @@ jobs:
- name: Start PostgreSQL ${{ matrix.old_pg }}
run: pg-start ${{ matrix.old_pg }}
- name: Check out the repo
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install rsync
run: apt-get install -y rsync
- name: Recreate old cluster with data checksums enabled
Expand Down Expand Up @@ -631,7 +631,7 @@ jobs:
pg_ctlcluster 10 test start
pg_isready -t 30
- name: Check out the repo
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install rsync
# Must NOT install a newer server-dev yet: `make install` just below runs
# with the DEFAULT pg_config, which must still resolve to PG10. Each newer
Expand Down Expand Up @@ -717,7 +717,7 @@ jobs:
- name: Start PostgreSQL ${{ env.LEGACY_PG }}
run: pg-start ${{ env.LEGACY_PG }}
- name: Check out the repo
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install rsync
# No server-dev header package here: this job runs no suite (see the
# job comment above), so nothing needs the relkind drift check.
Expand Down Expand Up @@ -793,7 +793,7 @@ jobs:
- name: Start PostgreSQL ${{ matrix.pg }}
run: pg-start ${{ matrix.pg }}
- name: Check out the repo
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install rsync
run: apt-get install -y rsync
- name: Install pgtap (test harness dependency)
Expand Down Expand Up @@ -925,7 +925,7 @@ jobs:
- name: Start PostgreSQL ${{ matrix.old_pg }}
run: pg-start ${{ matrix.old_pg }}
- name: Check out the repo
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install rsync
run: apt-get install -y rsync
- name: Recreate old cluster with data checksums enabled
Expand Down Expand Up @@ -1023,7 +1023,7 @@ jobs:
if: always()
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Verify all jobs are listed in needs
# Ensures this job won't silently ignore a newly-added job that was
# omitted from the needs list above.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/claude-code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ jobs:
# branch (master), never the fork's PR head. See the SECURITY note
# above; anthropics/claude-code-action fetches the actual PR head
# itself afterward via the base repo's `refs/pull/<N>/head` ref.
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 1
persist-credentials: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Checkout repository
# Intentionally tracks the major-version tag (not a pinned SHA) so
# upstream fixes are picked up automatically.
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 1
persist-credentials: false
Expand Down
Loading