File tree Expand file tree Collapse file tree 9 files changed +44
-21
lines changed
Expand file tree Collapse file tree 9 files changed +44
-21
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ - package-ecosystem : " github-actions"
4+ directory : " /"
5+ schedule :
6+ interval : " weekly"
7+ groups :
8+ github-actions :
9+ patterns :
10+ - " *"
Original file line number Diff line number Diff line change 1414 - ' grafana/**'
1515 - ' prometheus/**'
1616
17+ # cancel same workflows in progress for pull request branches
18+ concurrency :
19+ group : ${{ github.workflow }}-${{ github.ref }}
20+ cancel-in-progress : ${{ github.ref != 'refs/heads/master' }}
21+
1722jobs :
1823 build :
1924 runs-on : ubuntu-latest
2025 timeout-minutes : 90
2126 name : Build
2227 steps :
23- - uses : actions/checkout@v3
28+ - uses : actions/checkout@v6
2429 - name : Build project
2530 env :
2631 DSE_REPO_USERNAME : ${{ secrets.DSE_REPO_USERNAME }}
@@ -41,22 +46,22 @@ jobs:
4146 pulsarImage : ['datastax/lunastreaming:2.10_3.4', 'apachepulsar/pulsar:2.10.3', 'apachepulsar/pulsar:2.11.0']
4247 cassandraFamily : ['c3', 'c4', 'dse4']
4348 steps :
44- - uses : actions/checkout@v3
49+ - uses : actions/checkout@v6
4550 - name : Set up JDK ${{ matrix.jdk }}
46- uses : actions/setup-java@v3
51+ uses : actions/setup-java@v5
4752 with :
4853 java-version : ${{ matrix.jdk }}
4954 distribution : ' adopt'
5055
5156 - name : Get project version
52- uses : HardNorth/github-version-generate@v1.3 .0
57+ uses : HardNorth/github-version-generate@v1.4 .0
5358 with :
5459 version-source : file
5560 version-file : gradle.properties
5661 version-file-extraction-pattern : ' (?<=version=).+'
5762
5863 - name : Cache Docker layers
59- uses : actions/cache@v3
64+ uses : actions/cache@v5
6065 with :
6166 path : /tmp/.buildx-cache
6267 key : ${{ runner.os }}-buildx-${{ github.sha }}
Original file line number Diff line number Diff line change 1414 - ' grafana/**'
1515 - ' prometheus/**'
1616
17+ # cancel same workflows in progress for pull request branches
18+ concurrency :
19+ group : ${{ github.workflow }}-${{ github.ref }}
20+ cancel-in-progress : ${{ github.ref != 'refs/heads/master' }}
21+
1722jobs :
1823 build :
1924 runs-on : ubuntu-latest
2025 timeout-minutes : 90
2126 name : Build
2227 steps :
23- - uses : actions/checkout@v3
28+ - uses : actions/checkout@v6
2429 - name : Build project
2530 env :
2631 DSE_REPO_USERNAME : ${{ secrets.DSE_REPO_USERNAME }}
@@ -41,22 +46,22 @@ jobs:
4146 jdk : ['11', '17']
4247 pulsarImage : ['datastax/lunastreaming:2.10_3.4', 'apachepulsar/pulsar:2.10.3', 'apachepulsar/pulsar:2.11.0']
4348 steps :
44- - uses : actions/checkout@v3
49+ - uses : actions/checkout@v6
4550 - name : Set up JDK ${{ matrix.jdk }}
46- uses : actions/setup-java@v3
51+ uses : actions/setup-java@v5
4752 with :
4853 java-version : ${{ matrix.jdk }}
4954 distribution : ' adopt'
5055
5156 - name : Get project version
52- uses : HardNorth/github-version-generate@v1.3 .0
57+ uses : HardNorth/github-version-generate@v1.4 .0
5358 with :
5459 version-source : file
5560 version-file : gradle.properties
5661 version-file-extraction-pattern : ' (?<=version=).+'
5762
5863 - name : Cache Docker layers
59- uses : actions/cache@v3
64+ uses : actions/cache@v5
6065 with :
6166 path : /tmp/.buildx-cache
6267 key : ${{ runner.os }}-buildx-${{ github.sha }}
Original file line number Diff line number Diff line change 1313 - name : Checkout repository
1414 uses : actions/checkout@v3
1515 - name : Set up JDK 11
16- uses : actions/setup-java@v3
16+ uses : actions/setup-java@v5
1717 with :
1818 java-version : ' 11'
1919 distribution : ' adopt'
Original file line number Diff line number Diff line change 99 build :
1010 runs-on : ubuntu-latest
1111 steps :
12- - uses : actions/checkout@v3
12+ - uses : actions/checkout@v6
1313 - name : Set up JDK 11
14- uses : actions/setup-java@v3
14+ uses : actions/setup-java@v5
1515 with :
1616 java-version : ' 11'
1717 distribution : ' adopt'
1818
1919 - name : Get project version
20- uses : HardNorth/github-version-generate@v1.3 .0
20+ uses : HardNorth/github-version-generate@v1.4 .0
2121 with :
2222 version-source : file
2323 version-file : gradle.properties
Original file line number Diff line number Diff line change @@ -62,8 +62,8 @@ allprojects {
6262 testImplementation " org.projectlombok:lombok:${ lombokVersion} "
6363 testAnnotationProcessor " org.projectlombok:lombok:${ lombokVersion} "
6464
65- testImplementation ' org.junit.jupiter:junit-jupiter-api:5.1.1 '
66- testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.1.1 '
65+ testImplementation " org.junit.jupiter:junit-jupiter-api:${ junitJupiterVersion } "
66+ testRuntimeOnly " org.junit.jupiter:junit-jupiter-engine:${ junitJupiterVersion } "
6767 }
6868
6969 // use JUnit 5 platform
Original file line number Diff line number Diff line change @@ -75,9 +75,9 @@ dependencies {
7575
7676 testImplementation(" com.datastax.oss:dsbulk-tests:${ dsbulkVersion} " )
7777 testImplementation(" org.reactivestreams:reactive-streams:1.0.3" )
78- testImplementation(" org.junit.jupiter:junit-jupiter-params:5.7.2 " )
79- testImplementation(" org.junit.jupiter:junit-jupiter-api:5.7.2 " )
80- testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.7.2 " )
78+ testImplementation(" org.junit.jupiter:junit-jupiter-params:${ junitJupiterVersion } " )
79+ testImplementation(" org.junit.jupiter:junit-jupiter-api:${ junitJupiterVersion } " )
80+ testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:${ junitJupiterVersion } " )
8181
8282
8383 testImplementation " org.testcontainers:testcontainers:${ testContainersVersion} "
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ releasesRepoUrl=https://repo.datastax.com/artifactory/datastax-public-releases-l
1010avroVersion =1.11.4
1111lombokVersion =1.18.20
1212ossDriverVersion =4.19.2
13- cassandra3Version =3.11.10
13+ cassandra3Version =3.11.19
1414cassandra4Version =4.0.4
1515dse4Version =6.8.23
1616
@@ -46,3 +46,6 @@ dockerRepo=myrepo/
4646
4747# CDC backfilling Client
4848dsbulkVersion =1.11.0
49+
50+ # test
51+ junitJupiterVersion =5.7.2
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ dependencies {
2929 implementation " org.projectlombok:lombok:${ lombokVersion} "
3030 annotationProcessor " org.projectlombok:lombok:${ lombokVersion} "
3131
32- implementation ' org.junit.jupiter:junit-jupiter-api:5.1.1 '
32+ implementation " org.junit.jupiter:junit-jupiter-api:${ junitJupiterVersion } "
3333
3434 implementation " org.testcontainers:testcontainers:${ testContainersVersion} "
3535 implementation " org.testcontainers:database-commons:${ testContainersVersion} "
You can’t perform that action at this time.
0 commit comments