Skip to content

Commit 2fcece6

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/checkout-4
2 parents 5b6a9c3 + 99ff117 commit 2fcece6

7 files changed

+28
-15
lines changed

.github/workflows/attach-artifact-release.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@ on:
44
pull_request:
55
types:
66
- closed
7+
push:
8+
branches:
9+
- main
710

811
jobs:
912

1013
attach-artifact-to-release:
11-
uses: liquibase/build-logic/.github/workflows/extension-attach-artifact-release.yml@v0.5.3
14+
uses: liquibase/build-logic/.github/workflows/extension-attach-artifact-release.yml@v0.5.9
1215
secrets: inherit

.github/workflows/build-nightly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
nightly-build:
10-
uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@v0.5.3
10+
uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@v0.5.9
1111
with:
1212
nightly: true
1313
secrets: inherit

.github/workflows/codeql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
codeql:
15-
uses: liquibase/build-logic/.github/workflows/codeql.yml@v0.5.3
15+
uses: liquibase/build-logic/.github/workflows/codeql.yml@v0.5.9
1616
secrets: inherit
1717
with:
1818
languages: '["java"]'

.github/workflows/create-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ on:
88

99
jobs:
1010
create-release:
11-
uses: liquibase/build-logic/.github/workflows/create-release.yml@v0.5.3
11+
uses: liquibase/build-logic/.github/workflows/create-release.yml@v0.5.9
1212
secrets: inherit

.github/workflows/release-published.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ on:
77

88
jobs:
99
release:
10-
uses: liquibase/build-logic/.github/workflows/extension-release-published.yml@v0.5.3
10+
uses: liquibase/build-logic/.github/workflows/extension-release-published.yml@v0.5.9
1111
secrets: inherit

.github/workflows/test.yml

+9-5
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ on:
99
- synchronize
1010

1111
jobs:
12-
build:
13-
uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@v0.5.3
12+
build-test:
13+
uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@v0.5.9
1414
secrets: inherit
1515

1616
integration-test:
@@ -33,7 +33,7 @@ jobs:
3333
cache: 'maven'
3434

3535
- name: Build Cache
36-
uses: actions/cache@v3.0.5
36+
uses: actions/cache@v3.3.2
3737
with:
3838
key: build-${{ github.run_number }}-${{ github.run_attempt }}
3939
path: |
@@ -45,10 +45,14 @@ jobs:
4545

4646
- name: Archive Test Results
4747
if: ${{ always() }}
48-
uses: actions/upload-artifact@v2
48+
uses: actions/upload-artifact@v4
4949
with:
5050
name: test-reports-teradata-${{ matrix.teradata }}
5151
path: |
5252
**/target/surefire-reports
5353
**/target/jacoco.exec
54-
54+
55+
dependabot-automerge:
56+
needs: build-test
57+
uses: liquibase/build-logic/.github/workflows/dependabot-automerge.yml@v0.5.9
58+
secrets: inherit

pom.xml

+11-5
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54

65
<parent>
76
<groupId>org.liquibase</groupId>
87
<artifactId>liquibase-parent-pom</artifactId>
9-
<version>0.2.6</version> <!-- Replace with the desired version -->
8+
<version>0.3.4</version> <!-- Replace with the desired version -->
109
</parent>
1110

1211
<groupId>org.liquibase.ext</groupId>
1312
<artifactId>liquibase-teradata</artifactId>
14-
<version>4.24.1-SNAPSHOT</version>
13+
<version>4.26.0-SNAPSHOT</version>
1514

1615
<name>Liquibase Extension Teradata Database support</name>
1716
<description>Add this Liquibase extension to your project to support Teradata Database</description>
1817
<url>https://github.com/liquibase/liquibase-teradata</url>
1918

2019
<properties>
21-
<liquibase.version>4.24.0</liquibase.version>
20+
<liquibase.version>4.25.0</liquibase.version>
2221
</properties>
2322

2423
<dependencies>
@@ -36,6 +35,13 @@
3635
</dependency>
3736
</dependencies>
3837

38+
<scm>
39+
<connection>scm:git:${project.scm.url}</connection>
40+
<developerConnection>scm:git:${project.scm.url}</developerConnection>
41+
<url>https://github.com/liquibase/liquibase-teradata.git</url>
42+
<tag>HEAD</tag>
43+
</scm>
44+
3945
<build>
4046
<plugins>
4147
<plugin>

0 commit comments

Comments
 (0)