Skip to content

Commit

Permalink
Combined dependency updates (2023-12-02) (#107)
Browse files Browse the repository at this point in the history
Includes these updates:
- [Bump actions/setup-java from 3 to 4](#100)
- [Bump commons-io:commons-io from 2.15.0 to 2.15.1 in /java](#103)
- [Bump junit5.version from 5.10.0 to 5.10.1 in /java](#102)
- [Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.0 to 3.6.2 in /java](#101)
- [Bump org.apache.maven.plugins:maven-surefire-report-plugin from 3.2.1 to 3.2.2 in /java](#104)
- [Bump Microsoft.NET.Test.Sdk from 17.7.2 to 17.8.0 in /net](#105)
  • Loading branch information
javiertuya authored Dec 2, 2023
1 parent 377fff2 commit 3a4ee49
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
gpg_private_key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
- name: Set up Apache Maven Central
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with: # running setup-java again overwrites the settings.xml
distribution: 'temurin'
java-version: '8'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Checkout GitHub repo
uses: actions/checkout@v4
- name: Select Java Version
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '8'
Expand Down
8 changes: 4 additions & 4 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<junit.version>4.13.2</junit.version>
<junit5.version>5.10.0</junit5.version>
<junit5.version>5.10.1</junit5.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -52,7 +52,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.15.0</version>
<version>2.15.1</version>
</dependency>
</dependencies>

Expand All @@ -61,7 +61,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>3.2.1</version>
<version>3.2.2</version>
<executions>
<execution>
<id>ut-reports</id>
Expand All @@ -88,7 +88,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.0</version>
<version>3.6.2</version>
<configuration>
<quiet>true</quiet>
<doclint>none</doclint>
Expand Down
2 changes: 1 addition & 1 deletion net/TestVisualAssert/TestVisualAssert.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />

<PackageReference Include="NUnit" Version="3.13.3" />

Expand Down

0 comments on commit 3a4ee49

Please sign in to comment.