Skip to content

Commit

Permalink
chore: update liquibase/build-logic workflows to v0.5.5
Browse files Browse the repository at this point in the history
The liquibase/build-logic workflows in the following files have been updated to version v0.5.5:
- .github/workflows/attach-artifact-release.yml
- .github/workflows/build-nightly.yml
- .github/workflows/create-release.yml
- .github/workflows/release-published.yml
- .github/workflows/test.yml

The update includes using the latest version of the workflows to ensure compatibility and take advantage of any bug fixes or improvements.

Additionally, the pom.xml file has been updated to include SCM information for the project. This includes the connection, developer connection, URL, and tag information for the Liquibase BigQuery repository on GitHub.
  • Loading branch information
jandroav committed Oct 26, 2023
1 parent faa7653 commit bf5b2fd
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/attach-artifact-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
attach-artifact-to-release:
uses: liquibase/build-logic/.github/workflows/[email protected].2
uses: liquibase/build-logic/.github/workflows/[email protected].5
secrets: inherit
with:
extraCommand: mvn install:install-file -Dfile=lib/GoogleBigQueryJDBC42.jar -DgroupId=com.simba.googlebigquery.jdbc -DartifactId=GoogleBigQueryJDBC42 -Dversion=4.2 -Dpackaging=jar
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/[email protected].2
uses: liquibase/build-logic/.github/workflows/[email protected].5
with:
nightly: true
extraCommand: mvn install:install-file -Dfile=lib/GoogleBigQueryJDBC42.jar -DgroupId=com.simba.googlebigquery.jdbc -DartifactId=GoogleBigQueryJDBC42 -Dversion=4.2 -Dpackaging=jar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
create-release:
uses: liquibase/build-logic/.github/workflows/[email protected].2
uses: liquibase/build-logic/.github/workflows/[email protected].5
secrets: inherit
with:
extraCommand: mvn install:install-file -Dfile=lib/GoogleBigQueryJDBC42.jar -DgroupId=com.simba.googlebigquery.jdbc -DartifactId=GoogleBigQueryJDBC42 -Dversion=4.2 -Dpackaging=jar
2 changes: 1 addition & 1 deletion .github/workflows/release-published.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
release:
uses: liquibase/build-logic/.github/workflows/[email protected].2
uses: liquibase/build-logic/.github/workflows/[email protected].5
secrets: inherit
with:
extraCommand: mvn install:install-file -Dfile=lib/GoogleBigQueryJDBC42.jar -DgroupId=com.simba.googlebigquery.jdbc -DartifactId=GoogleBigQueryJDBC42 -Dversion=4.2 -Dpackaging=jar
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
build-test:
uses: liquibase/build-logic/.github/workflows/[email protected].2
uses: liquibase/build-logic/.github/workflows/[email protected].5
secrets: inherit
with:
extraCommand: mvn install:install-file -Dfile=lib/GoogleBigQueryJDBC42.jar -DgroupId=com.simba.googlebigquery.jdbc -DartifactId=GoogleBigQueryJDBC42 -Dversion=4.2 -Dpackaging=jar
Expand Down
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@
<sonar.tests>src/test/groovy</sonar.tests>
</properties>

<scm>
<connection>scm:git:${project.scm.url}</connection>
<developerConnection>scm:git:${project.scm.url}</developerConnection>
<url>https://github.com/liquibase/liquibase-bigquery.git</url>
<tag>HEAD</tag>
</scm>

<dependencyManagement>
<dependencies>
<dependency>
Expand Down

0 comments on commit bf5b2fd

Please sign in to comment.