Skip to content

Commit

Permalink
Test against PostgreSQL 15 (previously 14) (#1236)
Browse files Browse the repository at this point in the history
  • Loading branch information
ramonsmits authored Jul 31, 2023
1 parent 54c8b3e commit c6a9ca6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down

0 comments on commit c6a9ca6

Please sign in to comment.