Skip to content

Commit

Permalink
Bump org.liquibase:liquibase-parent-pom from 0.5.1 to 0.5.3 (#334)
Browse files Browse the repository at this point in the history
* Bump org.liquibase:liquibase-parent-pom from 0.5.1 to 0.5.3

Bumps [org.liquibase:liquibase-parent-pom](https://github.com/liquibase/liquibase-parent-pom) from 0.5.1 to 0.5.3.
- [Release notes](https://github.com/liquibase/liquibase-parent-pom/releases)
- [Commits](liquibase/liquibase-parent-pom@v0.5.1...v0.5.3)

---
updated-dependencies:
- dependency-name: org.liquibase:liquibase-parent-pom
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix: temporary fix for test harness issues

* fix build version

* fix build version

* fix build version

* chore: go back to previous test-harness

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: filipe <[email protected]>
  • Loading branch information
dependabot[bot] and filipelautert authored Dec 12, 2024
1 parent e9dbebc commit 2ed79e6
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
nightly-build:
uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@v0.7.8
uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@main
with:
nightly: true
java: '[11, 17, 18]'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
codeql:
uses: liquibase/build-logic/.github/workflows/codeql.yml@v0.7.8
uses: liquibase/build-logic/.github/workflows/codeql.yml@main
secrets: inherit
with:
languages: '["java"]'
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ permissions:

jobs:
create-release:
uses: liquibase/build-logic/.github/workflows/create-release.yml@v0.7.8
uses: liquibase/build-logic/.github/workflows/create-release.yml@main
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/release-published.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ on:

jobs:
release:
uses: liquibase/build-logic/.github/workflows/extension-release-published.yml@v0.7.8
uses: liquibase/build-logic/.github/workflows/extension-release-published.yml@main
secrets: inherit
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build and Test

on:
workflow_dispatch:
pull_request_target:
pull_request:
types:
- opened
- reopened
Expand All @@ -25,7 +25,7 @@ jobs:

build-test:
needs: authorize
uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@v0.7.8
uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@main
secrets: inherit
with:
java: "[11, 17, 21]"
Expand Down Expand Up @@ -89,5 +89,5 @@ jobs:

dependabot:
needs: integration-tests
uses: liquibase/build-logic/.github/workflows/dependabot-automerge.yml@v0.7.8
uses: liquibase/build-logic/.github/workflows/dependabot-automerge.yml@main
secrets: inherit
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-parent-pom</artifactId>
<version>0.5.1</version> <!-- Replace with the desired version -->
<version>0.5.3</version> <!-- Replace with the desired version -->
</parent>

<groupId>org.liquibase.ext</groupId>
Expand Down Expand Up @@ -79,6 +79,12 @@
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-test-harness</artifactId>
<version>1.0.9</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package liquibase.ext.cassandra

import liquibase.harness.BaseHarnessSuite;
import liquibase.harness.BaseHarnessSuite

class ContributedExtensionHarnessSuite extends BaseHarnessSuite {

Expand Down

0 comments on commit 2ed79e6

Please sign in to comment.