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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v7
- name: Sync
run: uv sync --all-packages --all-groups
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
integration-postgres:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v7
- run: uv sync --all-packages --all-groups
- name: Start postgres stack
Expand All @@ -55,7 +55,7 @@ jobs:
integration-trino:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v7
- run: uv sync --all-packages --all-groups
- name: Start trino stack
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dco.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
dco:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
# The whole PR commit range has to be walkable, not just the merge commit.
fetch-depth: 0
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
engine: [postgres, trino]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Build ${{ matrix.engine }} image
run: docker build -f Dockerfile.${{ matrix.engine }} -t cpr-smoke-${{ matrix.engine }} .
- name: Save image
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
--health-timeout 5s
--health-retries 10
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/download-artifact@v4
with:
name: cpr-smoke-postgres-image
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/download-artifact@v4
with:
name: cpr-smoke-trino-image
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v4
- name: Log in to ghcr.io
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
id-token: write # OIDC token for Trusted Publishing
contents: read # actions/checkout needs read access to the repo
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v7
- name: Test before publishing
# `-m "not image"` deselects the image smoke tests; images.yml runs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
# other source of the repo's files. Its absence went unnoticed through
# review because this job only triggers on push:tags, never on
# pull_request, so no PR's CI ever actually executes it.
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Wait for publish-pypi.yml and images.yml to finish on this commit
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
# range (below), and this repository is small enough (a few hundred KB,
# well under a second to scan) that fetch-depth: 0 costs nothing on every
# trigger rather than only on the schedule.
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

# Advisory: reports HIGH/CRITICAL and always exits 0. Base-image and
# transitive CVEs are often unfixable upstream, so gating on them would
Expand Down
Loading