diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index dcc3039b..f6279504 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -24,21 +24,23 @@ jobs: 11 17 21 + 22 distribution: zulu # only first java setup need enable cache cache: maven - name: Run integration test - run: scripts/integration_test && demos/scripts/integration_test + run: scripts/integration_test + - name: Run integration of demos + run: demos/scripts/integration_test - name: Remove self maven install files run: rm -rf $HOME/.m2/repository/io/foldright/cffu* - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v3 - with: - name: codecov-umbrella - token: ${{ secrets.CODECOV_TOKEN }} + uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} # https://remarkablemark.org/blog/2017/10/12/check-git-dirty/ - name: Check git dirty diff --git a/.github/workflows/fast_ci.yaml b/.github/workflows/fast_ci.yaml index 6afea788..6ee48d24 100644 --- a/.github/workflows/fast_ci.yaml +++ b/.github/workflows/fast_ci.yaml @@ -22,7 +22,7 @@ jobs: uses: actions/setup-java@v4 with: java-version: 21 - distribution: zulu + distribution: microsoft # only first java setup need enable cache cache: maven - name: Build and test with Java 21 diff --git a/README.md b/README.md index 017c7f1f..093c7b9c 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,8 @@ dokka Maven Central GitHub Releases -GitHub Stars -GitHub Forks +GitHub Stars +GitHub Forks GitHub Issues GitHub Contributors GitHub repo size diff --git a/cffu-bom/pom.xml b/cffu-bom/pom.xml index 5a6ccf10..a874210f 100644 --- a/cffu-bom/pom.xml +++ b/cffu-bom/pom.xml @@ -98,7 +98,7 @@ org.apache.maven.plugins maven-source-plugin - 3.3.0 + 3.3.1 org.apache.maven.plugins @@ -108,7 +108,7 @@ org.apache.maven.plugins maven-surefire-plugin - 3.2.2 + 3.2.5 org.apache.maven.plugins @@ -118,7 +118,7 @@ org.jacoco jacoco-maven-plugin - 0.8.11 + 0.8.12 @@ -138,7 +138,7 @@ org.apache.maven.plugins maven-gpg-plugin - 3.1.0 + 3.2.2 sign-artifacts diff --git a/cffu-kotlin/pom.xml b/cffu-kotlin/pom.xml index b9566eaf..22d3a4a8 100644 --- a/cffu-kotlin/pom.xml +++ b/cffu-kotlin/pom.xml @@ -56,7 +56,7 @@ true - 1.9.10 + 1.9.20 diff --git a/demos/pom.xml b/demos/pom.xml index 0ff8f73b..f884bdf0 100644 --- a/demos/pom.xml +++ b/demos/pom.xml @@ -14,7 +14,7 @@ ${project.build.sourceEncoding} true - 1.9.21 + 1.9.23 ${maven.compiler.source} @@ -22,7 +22,7 @@ - 5.10.1 + 5.10.2 @@ -115,7 +115,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.11.0 + 3.13.0 @@ -127,7 +127,7 @@ org.apache.maven.plugins maven-surefire-plugin - 3.2.2 + 3.2.5 org.apache.maven.plugins @@ -137,7 +137,7 @@ org.apache.maven.plugins maven-source-plugin - 3.3.0 + 3.3.1 org.apache.maven.plugins @@ -147,7 +147,7 @@ org.apache.maven.plugins maven-gpg-plugin - 3.1.0 + 3.2.2 org.apache.maven.plugins @@ -167,7 +167,7 @@ org.codehaus.mojo exec-maven-plugin - 3.1.1 + 3.2.0 org.apache.maven.plugins @@ -177,7 +177,7 @@ org.jacoco jacoco-maven-plugin - 0.8.11 + 0.8.12 diff --git a/demos/scripts/integration_test b/demos/scripts/integration_test index 869d755e..c9ff610f 100755 --- a/demos/scripts/integration_test +++ b/demos/scripts/integration_test @@ -13,6 +13,7 @@ readonly JDK_VERSIONS=( 11 17 21 + 22 ) for jdk_version in "${JDK_VERSIONS[@]}"; do diff --git a/pom.xml b/pom.xml index 43cf8d20..11cf536c 100644 --- a/pom.xml +++ b/pom.xml @@ -70,20 +70,20 @@ ^\d(\.\d+)?\.(\d+|x)-SNAPSHOT$ ^\d\.\d+\.\d+(-(Alpha|Beta|RC)\d+)?$ - 4.8.2 + 4.8.4 3.0.2 24.1.0 - 1.9.21 + 1.9.23 ${maven.compiler.source} 1.6 - 2.0.9 + 2.0.12 - 5.10.1 - 5.8.0 + 5.10.2 + 5.8.1 @@ -185,7 +185,7 @@ com.alibaba transmittable-thread-local - 2.14.4 + 2.14.5 org.apache.commons @@ -379,7 +379,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.11.0 + 3.13.0 @@ -391,7 +391,7 @@ org.apache.maven.plugins maven-surefire-plugin - 3.2.2 + 3.2.5 org.apache.maven.plugins @@ -402,12 +402,12 @@ org.moditect moditect-maven-plugin - 1.1.0 + 1.2.1.Final org.apache.maven.plugins maven-shade-plugin - 3.5.1 + 3.5.2 true @@ -418,7 +418,7 @@ org.apache.maven.plugins maven-source-plugin - 3.3.0 + 3.3.1 org.apache.maven.plugins @@ -428,7 +428,7 @@ org.apache.maven.plugins maven-gpg-plugin - 3.1.0 + 3.2.2 org.apache.maven.plugins @@ -453,17 +453,17 @@ io.github.git-commit-id git-commit-id-maven-plugin - 7.0.0 + 8.0.2 com.github.spotbugs spotbugs-maven-plugin - 4.8.2.0 + 4.8.3.1 org.jacoco jacoco-maven-plugin - 0.8.11 + 0.8.12 diff --git a/scripts/integration_test b/scripts/integration_test index 28a1778b..bcac2d3c 100755 --- a/scripts/integration_test +++ b/scripts/integration_test @@ -20,6 +20,7 @@ readonly JDK_VERSIONS=( 11 17 "$default_build_jdk_version" + 22 ) # here use `install` and `-D performRelease` intended