Skip to content

Commit d7101fd

Browse files
committed
Merge branch 'master' of ssh://github.com/ExpediaGroup/bull into develop
2 parents 5ded59e + dcae9cf commit d7101fd

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/github-default-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
mvn verify jacoco:report-aggregate -P compatibility-mode
6363
- name: "Upload coverage baseline"
6464
if: github.ref == 'refs/heads/master'
65-
uses: actions/upload-artifact@v4
65+
uses: actions/upload-artifact@v7
6666
with:
6767
name: jacoco-coverage-baseline
6868
path: bull-report/target/site/jacoco-aggregate/jacoco.xml

.github/workflows/github-pr-coverage-comment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
if: github.event.workflow_run.conclusion == 'success'
1818
steps:
1919
- name: "Download coverage artifact"
20-
uses: actions/download-artifact@v4
20+
uses: actions/download-artifact@v8
2121
with:
2222
name: pr-coverage-report
2323
github-token: ${{ secrets.GITHUB_TOKEN }}
2424
run-id: ${{ github.event.workflow_run.id }}
2525

2626
- name: "Download baseline coverage"
27-
uses: dawidd6/action-download-artifact@v6
27+
uses: dawidd6/action-download-artifact@v19
2828
continue-on-error: true
2929
with:
3030
workflow: github-default-actions.yml
@@ -112,7 +112,7 @@ jobs:
112112
run: echo "number=$(cat pr_number.txt)" >> $GITHUB_OUTPUT
113113

114114
- name: "Post coverage comment"
115-
uses: marocchino/sticky-pull-request-comment@v2
115+
uses: marocchino/sticky-pull-request-comment@v3
116116
with:
117117
number: ${{ steps.pr.outputs.number }}
118118
path: coverage_comment.md

.github/workflows/github-pr-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: echo "${{ github.event.pull_request.number }}" > pr_number.txt
4848

4949
- name: "Upload coverage and PR metadata"
50-
uses: actions/upload-artifact@v4
50+
uses: actions/upload-artifact@v7
5151
with:
5252
name: pr-coverage-report
5353
path: |

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
<testng.version>7.12.0</testng.version>
5858
<assertj-core.version>3.27.7</assertj-core.version>
5959
<joda-time.version>2.14.1</joda-time.version>
60-
<kotlin.version>1.9.25</kotlin.version>
60+
<kotlin.version>2.3.20</kotlin.version>
6161
<!-- validation dependencies -->
6262
<hibernate-validator.version>9.0.0.Final</hibernate-validator.version>
6363
<jboss-logging.version>3.6.3.Final</jboss-logging.version>
@@ -87,7 +87,7 @@
8787
<maven.versions.plugin.version>2.21.0</maven.versions.plugin.version>
8888
<puppycrawl.checkstyle.version>12.3.0</puppycrawl.checkstyle.version>
8989
<maven.release.plugin.version>3.0.0-M4</maven.release.plugin.version>
90-
<maven.central-publishing.plugin.version>0.7.0</maven.central-publishing.plugin.version>
90+
<maven.central-publishing.plugin.version>0.10.0</maven.central-publishing.plugin.version>
9191
<maven.project.info.reports.plugin.version>3.1.2</maven.project.info.reports.plugin.version>
9292
<maven-enforcer-plugin.version>3.6.2</maven-enforcer-plugin.version>
9393
<spotless.maven.plugin.version>3.4.0</spotless.maven.plugin.version>

0 commit comments

Comments
 (0)