Skip to content

Commit

Permalink
chore(deps): bump liquibase-github-actions/drop-all
Browse files Browse the repository at this point in the history
Bumps [liquibase-github-actions/drop-all](https://github.com/liquibase-github-actions/drop-all) from 4.27.0 to 4.28.0.
- [Release notes](https://github.com/liquibase-github-actions/drop-all/releases)
- [Commits](liquibase-github-actions/drop-all@v4.27.0...v4.28.0)

---
updated-dependencies:
- dependency-name: liquibase-github-actions/drop-all
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed Jun 6, 2024
1 parent 06e153b commit 9a04c2b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
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

0 comments on commit 9a04c2b

Please sign in to comment.