Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump liquibase-github-actions/drop-all from 4.27.0 to 4.28.0 #811

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ jobs:
sleep 30
liquibase --classpath="src/test/resources/init-changelogs/aws" --changeLogFile="${{ steps.setup.outputs.databasePlatform }}.sql" --username="root" --password="${{ env.TH_DB_PASSWD }}" --url="$mysql_url" update

- uses: liquibase-github-actions/drop-all@v4.27.0
- uses: liquibase-github-actions/drop-all@v4.28.0
if: ${{ steps.setup.outputs.databasePlatform == 'oracle' }}
with:
url: "${{ secrets.TH_ORACLEURL_19 }}"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
run: lpm update && lpm add mysql

- name: Clean Azure MySQL Database
uses: liquibase-github-actions/drop-all@v4.27.0
uses: liquibase-github-actions/drop-all@v4.28.0
if: ${{ matrix.database == 'mysql' }}
with:
url: "${{secrets.TH_AZURE_MYSQL_URL}}"
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
core.setOutput("databaseVersion", splitValues[1]);

- name: Azure MSSQL dropAll
uses: liquibase-github-actions/drop-all@v4.27.0
uses: liquibase-github-actions/drop-all@v4.28.0
if: ${{ steps.setup.outputs.databasePlatform == 'mssql' && steps.setup.outputs.databaseVersion == 'azure' }}
with:
url: "${{secrets.TH_AZURE_URL}}"
Expand All @@ -120,7 +120,7 @@ jobs:
url: "${{secrets.TH_AZURE_URL}}"

- name: Azure MSSQL MI dropAll
uses: liquibase-github-actions/drop-all@v4.27.0
uses: liquibase-github-actions/drop-all@v4.28.0
if: ${{ steps.setup.outputs.databasePlatform == 'mssql' && steps.setup.outputs.databaseVersion == 'mi' }}
with:
url: "${{secrets.TH_AZURE_MSSQL_MI_URL}}"
Expand All @@ -142,7 +142,7 @@ jobs:
url: "${{secrets.TH_AZURE_MSSQL_MI_URL}}"

- name: Azure PostgreSQL Single Server dropAll
uses: liquibase-github-actions/drop-all@v4.27.0
uses: liquibase-github-actions/drop-all@v4.28.0
if: ${{ steps.setup.outputs.databasePlatform == 'postgresql' && steps.setup.outputs.databaseVersion == 'azure' }}
with:
url: "${{secrets.TH_AZURE_POSTGRESQL_URL}}"
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
uses: actions/checkout@v4

- name: Azure PostgreSQL Flexible Server dropAll
uses: liquibase-github-actions/drop-all@v4.27.0
uses: liquibase-github-actions/drop-all@v4.28.0
with:
url: ${{ secrets[env.TH_AZURE_POSTGRESQL_FLEXIBLE_SERVER_URL] }}
username: "${{secrets.TH_DB_ADMIN}}"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/gcp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
run: lpm update && lpm add mysql

- name: Clean GCP MySQL Database
uses: liquibase-github-actions/drop-all@v4.27.0
uses: liquibase-github-actions/drop-all@v4.28.0
if: ${{ matrix.version == 'gcp' }}
with:
url: "${{ secrets.TH_GCP_MYSQL_8_0_URL }}"
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
core.setOutput("databasePlatform", splitValues[0]);
core.setOutput("databaseVersion", splitValues[1]);

- uses: liquibase-github-actions/drop-all@v4.27.0
- uses: liquibase-github-actions/drop-all@v4.28.0
if: ${{ steps.setup.outputs.databasePlatform == 'postgresql' }}
with:
url: "${{ secrets[format('TH_GCP_POSTGRESQL_{0}_URL', steps.setup.outputs.databaseVersion)] }}"
Expand All @@ -112,7 +112,7 @@ jobs:
password: "${{secrets.TH_DB_PASSWD}}"
url: "${{ secrets[format('TH_GCP_POSTGRESQL_{0}_URL', steps.setup.outputs.databaseVersion)] }}"

- uses: liquibase-github-actions/drop-all@v4.27.0
- uses: liquibase-github-actions/drop-all@v4.28.0
if: ${{ steps.setup.outputs.databasePlatform == 'mssql' }}
with:
url: "${{ secrets.TH_GCP_MSSQL_2019_URL }}"
Expand Down
Loading