diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7792c9966..9eccc3249 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,7 +59,7 @@ jobs: connection-string-env-var: SQLServerConnectionString catalog: nservicebus extra-params: "Encrypt=False;" - - name: Setup PostgreSql + - name: Setup PostgreSql 15.x id: setup-postgresql if: matrix.engine == 'PostgreSql' shell: pwsh @@ -78,7 +78,7 @@ jobs: echo "::add-mask::$password" echo "Creating PostgreSQL container $name (This can take a while)" - $details = az container create --image postgres:14 --name $name --location $region --dns-name-label $name --resource-group GitHubActions-RG --cpu 2 --memory 8 --ports 5432 --ip-address public --environment-variables POSTGRES_PASSWORD="$password" | ConvertFrom-Json + $details = az container create --image postgres:15 --name $name --location $region --dns-name-label $name --resource-group GitHubActions-RG --cpu 2 --memory 8 --ports 5432 --ip-address public --environment-variables POSTGRES_PASSWORD="$password" | ConvertFrom-Json echo "name=$name" | Out-File -FilePath $Env:GITHUB_OUTPUT -Encoding utf-8 -Append echo "Tagging container"