Skip to content

Commit

Permalink
Merge pull request #38 from levigo/refactoring/INF-70_reusable-workfl…
Browse files Browse the repository at this point in the history
…ows-pub

Refactoring/inf 70 reusable workflows pub
  • Loading branch information
welschsn authored Apr 15, 2024
2 parents 258e30d + 56400c7 commit e6d7d0b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ on:

jobs:
build:
uses: levigo/reusable-workflows/.github/workflows/continuous-delivery-np.yml@latest
uses: levigo/reusable-workflows-pub/.github/workflows/continuous-delivery-np.yml@latest
secrets: inherit
with:
multiModule: true
updateReadme:
needs: build
uses: levigo/reusable-workflows/.github/workflows/update-readme-md.yml@v3
uses: levigo/reusable-workflows-pub/.github/workflows/update-readme-md.yml@v1
secrets: inherit
with:
releaseVersion: ${{ needs.build.outputs.releaseVersion }}
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
call-continuous-integration:
uses: levigo/reusable-workflows/.github/workflows/continuous-integration.yml@v3
uses: levigo/reusable-workflows-pub/.github/workflows/continuous-integration.yml@v1
secrets: inherit
with:
notifyMattermost: false
Expand Down
2 changes: 1 addition & 1 deletion neverpile-commons-opentelemetry/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<artifactId>neverpile-commons-opentelemetry</artifactId>

<properties>
<opentelemetry.version>1.34.1</opentelemetry.version>
<opentelemetry.version>1.37.0</opentelemetry.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion neverpile-commons-swagger-ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<artifactId>neverpile-commons-swagger-ui</artifactId>

<properties>
<swagger.version>2.2.20</swagger.version>
<swagger.version>2.2.21</swagger.version>
<swagger-ui.version>4.19.1</swagger-ui.version>
</properties>

Expand Down
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<spring-boot.version>3.2.3</spring-boot.version>
<spring-boot.version>3.2.4</spring-boot.version>
</properties>

<modules>
Expand Down Expand Up @@ -55,7 +55,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.13.0</version>
<configuration>
<release>${java.version}</release>
<!-- required for [Parameter Name Discovery](https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-3.2-Release-Notes#parameter-name-discovery) -->
Expand All @@ -65,7 +65,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.3</version>
<version>3.2.5</version>
<configuration>
<excludes>
<exclude>**/*IT.java</exclude>
Expand All @@ -76,7 +76,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.2.3</version>
<version>3.2.5</version>
<configuration>
<skipITs>${skipIntegrationTests}</skipITs>
<forkCount>1</forkCount>
Expand All @@ -93,7 +93,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand Down Expand Up @@ -151,4 +151,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit e6d7d0b

Please sign in to comment.