Skip to content

Commit

Permalink
chore: update GitHub actions and Postgres image tags
Browse files Browse the repository at this point in the history
  • Loading branch information
reneleonhardt authored and dvarrazzo committed Oct 29, 2023
1 parent 89005ac commit 8947b00
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Trigger docs build
uses: peter-evans/repository-dispatch@v1
uses: peter-evans/repository-dispatch@v2
with:
repository: psycopg/psycopg-website
event-type: psycopg2-commit
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repos
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build sdist
run: ./scripts/build/build_sdist.sh
Expand All @@ -39,7 +39,7 @@ jobs:

services:
postgresql:
image: postgres:13
image: postgres:16
env:
POSTGRES_PASSWORD: password
ports:
Expand Down Expand Up @@ -69,10 +69,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repos
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up QEMU for multi-arch build
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

- name: Cache libpq build
uses: actions/cache@v3
Expand All @@ -81,7 +81,7 @@ jobs:
key: libpq-${{ env.LIBPQ_VERSION }}-${{ matrix.platform }}-${{ matrix.arch }}

- name: Build wheels
uses: pypa/[email protected].1
uses: pypa/[email protected].2
env:
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
CIBW_MANYLINUX_I686_IMAGE: manylinux2014
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:

services:
postgresql:
image: postgres:14
image: postgres:16
env:
POSTGRES_PASSWORD: password
ports:
Expand All @@ -140,10 +140,10 @@ jobs:

steps:
- name: Checkout repos
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build wheels
uses: pypa/[email protected].1
uses: pypa/[email protected].2
env:
CIBW_BUILD: ${{matrix.pyver}}-macosx_${{matrix.arch}}
CIBW_ARCHS_MACOS: x86_64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
--health-retries 5
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Can enable to test an unreleased libpq version.
- name: install libpq 16
Expand Down

0 comments on commit 8947b00

Please sign in to comment.