We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c20ea5 commit 83138b3Copy full SHA for 83138b3
1 file changed
.github/workflows/build-and-test.yml
@@ -34,7 +34,7 @@ jobs:
34
ports:
35
- 6379:6379
36
sqldb:
37
- image: postgres:16
+ image: postgres:17
38
env:
39
POSTGRES_USER: panettone
40
POSTGRES_PASSWORD: secret
@@ -45,12 +45,12 @@ jobs:
45
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
46
47
steps:
48
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
49
- name: Create database schema
50
run: PGPASSWORD=secret psql -h 127.0.0.1 -d testdb -U panettone -c "CREATE SCHEMA shakespeare; CREATE SCHEMA happy_hog;"
51
52
- - name: Install the latest version of uv and set the python version
53
- uses: astral-sh/setup-uv@v5
+ - name: Install the latest version of uv
+ uses: astral-sh/setup-uv@v7
54
with:
55
python-version: ${{ matrix.python-version }}
56
0 commit comments