feat: configure grant all on public schema for docker user
All checks were successful
Main / build (push) Successful in 8m6s

This commit is contained in:
RouxAntoine 2024-10-20 21:13:55 +02:00
parent 0f4214a70c
commit 4c4390756c
Signed by: antoine
GPG Key ID: 098FB66FC0475E70
3 changed files with 11 additions and 4 deletions

View File

@ -17,7 +17,8 @@ jobs:
container:
image: catthehacker/ubuntu:act-22.04
steps:
- uses: RouxAntoine/checkout@v4.1.8
- name: Checkout repository
uses: https://antoine-roux.tk/projects/actions/checkout@v4.1.8
with:
fetch-depth: 0
fetch-tags: false
@ -43,9 +44,11 @@ jobs:
linux/amd64
linux/arm64
- uses: RouxAntoine/auto-changie@v1.0.1
- name: Auto generate changelog
uses: https://antoine-roux.tk/projects/actions/auto-changie@v1.0.1
- name: Push changelog
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "${{ vars.SKIP_CI_PREFIX }} Push updated changelog"
file_pattern: "\\.changes/* CHANGELOG.md"

View File

@ -6,8 +6,9 @@ app_password="$POSTGRES_APP_PASSWORD"
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL
CREATE USER docker WITH PASSWORD '$app_password';
CREATE DATABASE docker;
GRANT ALL PRIVILEGES ON SCHEMA public TO docker;
GRANT ALL PRIVILEGES ON DATABASE docker TO docker;
-- SELECT datname FROM pg_database WHERE datistemplate = false;
-- SELECT table_schema,table_name
-- FROM information_schema.tables

View File

@ -1,4 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"dependencyDashboard": true
"dependencyDashboard": true,
"extends": [
"local>config/renovate-config"
]
}