0
0
Fork 0
mirror of https://github.com/tj-actions/pg-dump.git synced 2024-12-20 01:18:49 +00:00

Update README.md

This commit is contained in:
Tonye Jack 2024-01-06 13:02:28 -07:00 committed by GitHub
parent 2e4e509540
commit bfabd7b426
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,7 +31,7 @@ Run [pg\_dump](https://www.postgresql.org/docs/9.6/app-pgdump.html) to generate
uses: tj-actions/pg-dump@v3
with:
database_url: "postgres://test_user:test_user_password@localhost:5432/testdb"
postgresql_version: "15" # Note: Only the major version is required e.g. 12, 14, 15
postgresql_version: "16" # Note: Only the major version is required e.g. 12, 14, 15, 16
path: "backups/backup.sql"
options: "-O"
```