From 9dc1f712ce01f009da45b91fd1b33de833e03911 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Sep 2021 09:09:30 +0000 Subject: [PATCH 1/3] Bump liquibase-core from 4.4.3 to 4.5.0 Bumps [liquibase-core](https://github.com/liquibase/liquibase) from 4.4.3 to 4.5.0. - [Release notes](https://github.com/liquibase/liquibase/releases) - [Changelog](https://github.com/liquibase/liquibase/blob/master/changelog.txt) - [Commits](https://github.com/liquibase/liquibase/compare/v4.4.3...v4.5.0) --- updated-dependencies: - dependency-name: org.liquibase:liquibase-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f8f84ca0..2360e0b6 100644 --- a/pom.xml +++ b/pom.xml @@ -15,7 +15,7 @@ org.liquibase liquibase-core - 4.4.3 + 4.5.0 From ce88dafd1efff82b79e120c44dd306cadf68d008 Mon Sep 17 00:00:00 2001 From: ap-liquibase <86620405+ap-liquibase@users.noreply.github.com> Date: Wed, 29 Sep 2021 11:35:42 -0400 Subject: [PATCH 2/3] Update release-automation.yml change tag_version to avoid name collision --- .github/workflows/release-automation.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-automation.yml b/.github/workflows/release-automation.yml index 3dd813c0..ed3bb0d6 100644 --- a/.github/workflows/release-automation.yml +++ b/.github/workflows/release-automation.yml @@ -118,10 +118,10 @@ jobs: - name: Bump version and push tag if: ${{ steps.metadata.outputs.dependency-name == 'org.liquibase.ext:liquibase-snowflake' }} - id: tag_version + id: tag_version2 uses: mathieudutour/github-tag-action@v5.6 with: github_token: ${{ secrets.BOT_TOKEN }} create_annotated_tag: true custom_tag : ${{env.SNOWFLAKE_TARGET_VERSION}} - \ No newline at end of file + From 99cb72be7a36c0082bdb3f1d54e5b62d7a66dfa9 Mon Sep 17 00:00:00 2001 From: ap-liquibase Date: Wed, 29 Sep 2021 11:47:42 -0400 Subject: [PATCH 3/3] bump dockerfile manually for Dependabot PR --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e7501b28..e8a2d683 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,10 +24,10 @@ RUN ln -s /liquibase/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh \ USER liquibase # Latest Liquibase Release Version -ARG LIQUIBASE_VERSION=4.4.3 +ARG LIQUIBASE_VERSION=4.5.0 # Download, verify, extract -ARG LB_SHA256=b5dfa605ffc9853c39bef96ea72965a59d9ee12a3bcb59040b539d4782d4bff9 +ARG LB_SHA256=4ce45bcbe4660b33eee93e80b9be968631e85566d02d90c0c5306fac8d4dd602 RUN set -x \ && wget -O liquibase-${LIQUIBASE_VERSION}.tar.gz "https://github.com/liquibase/liquibase/releases/download/v${LIQUIBASE_VERSION}/liquibase-${LIQUIBASE_VERSION}.tar.gz" \ && echo "$LB_SHA256 liquibase-${LIQUIBASE_VERSION}.tar.gz" | sha256sum -c - \