From b0838dd642699089cc702884d1496cb031077db7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 15:57:50 +0000 Subject: [PATCH] Bump liquibase-github-actions/drop-all from 4.23.2 to 4.24.0 Bumps [liquibase-github-actions/drop-all](https://github.com/liquibase-github-actions/drop-all) from 4.23.2 to 4.24.0. - [Release notes](https://github.com/liquibase-github-actions/drop-all/releases) - [Commits](https://github.com/liquibase-github-actions/drop-all/compare/v4.23.2...v4.24.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] --- .github/workflows/aws.yml | 14 +++++++------- .github/workflows/azure.yml | 10 +++++----- .github/workflows/gcp.yml | 6 +++--- .github/workflows/snowflake.yml | 2 +- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/aws.yml b/.github/workflows/aws.yml index 44f30be53..69d5e03f9 100644 --- a/.github/workflows/aws.yml +++ b/.github/workflows/aws.yml @@ -61,7 +61,7 @@ jobs: run: lpm update && lpm add mysql - name: Clean AWS MySQL Database - uses: liquibase-github-actions/drop-all@v4.23.2 + uses: liquibase-github-actions/drop-all@v4.24.0 if: ${{ matrix.version == 'aws' }} with: url: "${{ secrets.TH_MYSQLURL_8_0 }}" @@ -74,7 +74,7 @@ jobs: run: liquibase --classpath="src/test/resources/init-changelogs/aws" --changeLogFile="${{ matrix.database }}.sql" --username="${{ secrets.TH_DB_ADMIN }}" --password="${{ secrets.TH_DB_PASSWD }}" --url="${{ secrets.TH_MYSQLURL_8_0 }}" update - name: Clean Aurora MySQL Database - uses: liquibase-github-actions/drop-all@v4.23.2 + uses: liquibase-github-actions/drop-all@v4.24.0 if: ${{ matrix.version == 'aurora' }} with: url: "${{ secrets.TH_AURORA_MYSQLURL }}" @@ -107,7 +107,7 @@ jobs: core.setOutput("databasePlatform", splitValues[0]); core.setOutput("databaseVersion", splitValues[1]); - - uses: liquibase-github-actions/drop-all@v4.23.2 + - uses: liquibase-github-actions/drop-all@v4.24.0 if: ${{ steps.setup.outputs.databasePlatform == 'oracle' }} with: url: "${{ secrets.TH_ORACLEURL_19 }}" @@ -125,7 +125,7 @@ jobs: password: "${{secrets.TH_DB_PASSWD}}" url: "${{ secrets.TH_ORACLEURL_19 }}" - - uses: liquibase-github-actions/drop-all@v4.23.2 + - uses: liquibase-github-actions/drop-all@v4.24.0 if: ${{ steps.setup.outputs.databasePlatform == 'postgresql' && steps.setup.outputs.databaseVersion != 'aurora' }} with: url: "${{ secrets[format('TH_PGRESURL_{0}', steps.setup.outputs.databaseVersion)] }}" @@ -143,7 +143,7 @@ jobs: password: "${{secrets.TH_DB_PASSWD}}" url: "${{ secrets[format('TH_PGRESURL_{0}', steps.setup.outputs.databaseVersion)] }}" - - uses: liquibase-github-actions/drop-all@v4.23.2 + - uses: liquibase-github-actions/drop-all@v4.24.0 if: ${{ steps.setup.outputs.databasePlatform == 'mariadb' }} with: url: "${{ secrets.TH_MARIADBURL_10_6 }}" @@ -161,7 +161,7 @@ jobs: password: "${{secrets.TH_DB_PASSWD}}" url: "${{ secrets.TH_MARIADBURL_10_6 }}" - - uses: liquibase-github-actions/drop-all@v4.23.2 + - uses: liquibase-github-actions/drop-all@v4.24.0 if: ${{ steps.setup.outputs.databasePlatform == 'mssql' }} with: url: "${{ secrets.TH_MSSQLURL }}" @@ -179,7 +179,7 @@ jobs: password: "${{secrets.TH_DB_PASSWD}}" url: "${{ secrets.TH_MSSQLURL }}" - - uses: liquibase-github-actions/drop-all@v4.23.2 + - uses: liquibase-github-actions/drop-all@v4.24.0 if: ${{ steps.setup.outputs.databasePlatform == 'postgresql' && steps.setup.outputs.databaseVersion == 'aurora' }} with: url: "${{ secrets.TH_AURORA_POSTGRESQLURL }}" diff --git a/.github/workflows/azure.yml b/.github/workflows/azure.yml index 8c8b11223..75207173d 100644 --- a/.github/workflows/azure.yml +++ b/.github/workflows/azure.yml @@ -56,7 +56,7 @@ jobs: run: lpm update && lpm add mysql - name: Clean Azure MySQL Database - uses: liquibase-github-actions/drop-all@v4.23.2 + uses: liquibase-github-actions/drop-all@v4.24.0 if: ${{ matrix.database == 'mysql' }} with: url: "${{secrets.TH_AZURE_MYSQL_URL}}" @@ -96,7 +96,7 @@ jobs: core.setOutput("databaseVersion", splitValues[1]); - name: Azure MSSQL dropAll - uses: liquibase-github-actions/drop-all@v4.23.2 + uses: liquibase-github-actions/drop-all@v4.24.0 if: ${{ steps.setup.outputs.databasePlatform == 'mssql' && steps.setup.outputs.databaseVersion == 'azure' }} with: url: "${{secrets.TH_AZURE_URL}}" @@ -116,7 +116,7 @@ jobs: url: "${{secrets.TH_AZURE_URL}}" - name: Azure MSSQL MI dropAll - uses: liquibase-github-actions/drop-all@v4.23.2 + uses: liquibase-github-actions/drop-all@v4.24.0 if: ${{ steps.setup.outputs.databasePlatform == 'mssql' && steps.setup.outputs.databaseVersion == 'mi' }} with: url: "${{secrets.TH_AZURE_MSSQL_MI_URL}}" @@ -136,7 +136,7 @@ jobs: url: "${{secrets.TH_AZURE_MSSQL_MI_URL}}" - name: Azure PostgreSQL Single Server dropAll - uses: liquibase-github-actions/drop-all@v4.23.2 + uses: liquibase-github-actions/drop-all@v4.24.0 if: ${{ steps.setup.outputs.databasePlatform == 'postgresql' && steps.setup.outputs.databaseVersion == 'azure' }} with: url: "${{secrets.TH_AZURE_POSTGRESQL_URL}}" @@ -156,7 +156,7 @@ jobs: url: "${{secrets.TH_AZURE_POSTGRESQL_URL}}" - name: Azure PostgreSQL Flexible Server dropAll - uses: liquibase-github-actions/drop-all@v4.23.2 + uses: liquibase-github-actions/drop-all@v4.24.0 if: ${{ steps.setup.outputs.databasePlatform == 'postgresql' && steps.setup.outputs.databaseVersion == 'flexible' }} with: url: "${{secrets.TH_AZURE_POSTGRESQL_FLEXIBLE_SERVER_URL}}" diff --git a/.github/workflows/gcp.yml b/.github/workflows/gcp.yml index 900e004df..0c5d48f08 100644 --- a/.github/workflows/gcp.yml +++ b/.github/workflows/gcp.yml @@ -57,7 +57,7 @@ jobs: run: lpm update && lpm add mysql - name: Clean GCP MySQL Database - uses: liquibase-github-actions/drop-all@v4.23.2 + uses: liquibase-github-actions/drop-all@v4.24.0 if: ${{ matrix.version == 'gcp' }} with: url: "${{ secrets.TH_GCP_MYSQL_8_0_URL }}" @@ -90,7 +90,7 @@ jobs: core.setOutput("databasePlatform", splitValues[0]); core.setOutput("databaseVersion", splitValues[1]); - - uses: liquibase-github-actions/drop-all@v4.23.2 + - uses: liquibase-github-actions/drop-all@v4.24.0 if: ${{ steps.setup.outputs.databasePlatform == 'postgresql' }} with: url: "${{ secrets[format('TH_GCP_POSTGRESQL_{0}_URL', steps.setup.outputs.databaseVersion)] }}" @@ -108,7 +108,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.23.2 + - uses: liquibase-github-actions/drop-all@v4.24.0 if: ${{ steps.setup.outputs.databasePlatform == 'mssql' }} with: url: "${{ secrets.TH_GCP_MSSQL_2019_URL }}" diff --git a/.github/workflows/snowflake.yml b/.github/workflows/snowflake.yml index aa36cfe7e..b755ef598 100644 --- a/.github/workflows/snowflake.yml +++ b/.github/workflows/snowflake.yml @@ -14,7 +14,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - uses: liquibase-github-actions/drop-all@v4.23.2 + - uses: liquibase-github-actions/drop-all@v4.24.0 with: url: "${{secrets.TH_SNOW_URL}}" username: "${{secrets.TH_DB_ADMIN}}"