Skip to content

Commit

Permalink
fix(deps): update to citrus v3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bbortt committed Aug 19, 2024
1 parent 8f5a714 commit b06f874
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 6 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# ---------------------------------------------------------------------------
# Copyright the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ---------------------------------------------------------------------------

name: nightly

on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"

jobs:
nightly:
runs-on: ubuntu-latest
steps:
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Checkout code
uses: actions/checkout@v4
- name: Cache Maven cache
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Info
run: |
java -version
./mvnw -version
- name: Simulator Dependency Report
run: |
./mvnw --no-transfer-progress versions:display-dependency-updates
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
<maven.nexus-staging.plugin.version>1.6.13</maven.nexus-staging.plugin.version>

<lombok.version>1.18.30</lombok.version>
<citrus.version>4.2.1</citrus.version>
<citrus.version>4.3.1</citrus.version>

<spring-boot.version>3.3.0</spring-boot.version>
<spring.version>6.3.0</spring.version>
<spring-boot.version>3.3.2</spring-boot.version>
<spring.version>6.3.2</spring.version>
<testng.version>7.10.2</testng.version>
<wsdl4j.version>1.6.3</wsdl4j.version>
<xerces.version>2.12.2</xerces.version>
Expand All @@ -38,8 +38,8 @@
<!-- see https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-logging/3.3.0 -->
<logback.classic.version>1.5.6</logback.classic.version>

<node.version>v20.12.1</node.version>
<npm.version>10.5.0</npm.version>
<node.version>v22.4.1</node.version>
<npm.version>10.8.1</npm.version>

<skip.gpg>false</skip.gpg>
<reuseForks>true</reuseForks>
Expand Down Expand Up @@ -216,7 +216,7 @@
<dependency>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
<version>3.1.0</version>
<version>5.2.0</version>
</dependency>

<dependency>
Expand Down

0 comments on commit b06f874

Please sign in to comment.