Trying to fix SCRAM error message

Trying to fix SCRAM error message
This commit is contained in:
Jeroen Baten 2022-06-16 21:07:04 +02:00 committed by GitHub
parent da99689a7e
commit f8e6ff5653
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,9 +38,9 @@ jobs:
sudo systemctl start postgresql.service
pg_isready
- name: Create scheduler user
- name: Create libreplan user
run: |
sudo -u postgres psql --command="CREATE USER libreplan PASSWORD 'libreplan'" --command="\du"
sudo -u postgres psql --command="ALTER SYSTEM SET password_encryption = 'scram-sha-256'; CREATE USER libreplan PASSWORD 'libreplan'" --command="\du"
- name: Create libreplandev database
run: |