Update client libs for test_runner/pg_clients to their latest versions (#7022)

## Problem
Closes https://github.com/neondatabase/neon/security/dependabot/56
Supersedes https://github.com/neondatabase/neon/pull/7013

Workflow run:
https://github.com/neondatabase/neon/actions/runs/8157302480

## Summary of changes
- Update client libs for `test_runner/pg_clients` to their latest
versions
This commit is contained in:
Alexander Bayandin
2024-03-06 17:09:54 +00:00
committed by GitHub
parent a9a4a76d13
commit f40b13d801
20 changed files with 291 additions and 223 deletions

View File

@@ -1,11 +1,11 @@
FROM swift:5.8 AS build
FROM swift:5.9 AS build
RUN apt-get -q update && apt-get -q install -y libssl-dev
WORKDIR /source
COPY . .
RUN swift build --configuration release
FROM swift:5.8
FROM swift:5.9
WORKDIR /app
COPY --from=build /source/.build/release .
CMD ["/app/PostgresClientKitExample"]