File tree Expand file tree Collapse file tree 7 files changed +221
-158
lines changed Expand file tree Collapse file tree 7 files changed +221
-158
lines changed Original file line number Diff line number Diff line change @@ -27,12 +27,12 @@ jobs:
2727 # 'pactflow-example-bi-directional-provider-dotnet'
2828 ]
2929 steps :
30- - uses : actions/checkout@v2
31- - name : Set up JDK 11
32- uses : actions/setup-java@v2
30+ - uses : actions/checkout@v4
31+ - name : Set up JDK 17
32+ uses : actions/setup-java@v4
3333 with :
3434 distribution : ' zulu'
35- java-version : ' 11 '
35+ java-version : ' 17 '
3636 - name : Test for ${{ matrix.pact_provider }}
3737 run : make test
3838 env :
4747 runs-on : ubuntu-latest
4848 needs : test
4949 steps :
50- - uses : actions/checkout@v2
50+ - uses : actions/checkout@v4
5151 - run : docker pull pactfoundation/pact-cli:latest
5252 - name : Can I deploy?
5353 run : GIT_BRANCH=${GIT_REF:11} make can_i_deploy
5757 runs-on : ubuntu-latest
5858 needs : can-i-deploy
5959 steps :
60- - uses : actions/checkout@v2
60+ - uses : actions/checkout@v4
6161 - run : docker pull pactfoundation/pact-cli:latest
6262 - name : Deploy
6363 run : GIT_BRANCH=${GIT_REF:11} make deploy
Original file line number Diff line number Diff line change 1- 11 .0
1+ 17 .0
Original file line number Diff line number Diff line change 11plugins {
2- id ' org.springframework.boot' version ' 2.2.2.RELEASE '
3- id ' io.spring.dependency-management' version ' 1.0.8.RELEASE '
2+ id ' org.springframework.boot' version ' 3.3.4 '
3+ id ' io.spring.dependency-management' version ' 1.1.6 '
44 id ' java'
5- id " au.com.dius.pact" version " 4.5.9 "
5+ id " au.com.dius.pact" version " 4.5.13 "
66}
77
88group = ' com.example'
99version = ' 0.0.1-SNAPSHOT'
10- sourceCompatibility = ' 11'
10+ java {
11+ sourceCompatibility = ' 17'
12+ }
1113
1214repositories {
1315 mavenCentral()
@@ -21,8 +23,8 @@ configurations {
2123
2224dependencies {
2325 implementation ' org.springframework.boot:spring-boot-starter-web'
24- implementation " org.apache.httpcomponents:fluent-hc:4.5.5 "
25- testImplementation ' au.com.dius.pact.consumer:junit5:4.5.9 '
26+ implementation " org.apache.httpcomponents:fluent-hc:4.5.14 "
27+ testImplementation ' au.com.dius.pact.consumer:junit5:4.5.13 '
2628
2729 compileOnly ' org.projectlombok:lombok'
2830 annotationProcessor ' org.projectlombok:lombok'
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-7.6.3-bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
4+ networkTimeout =10000
5+ validateDistributionUrl =true
46zipStoreBase =GRADLE_USER_HOME
57zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments