Skip to content

Commit 9b5207d

Browse files
authored
Combined dependency updates (2026-07-04)
Dependabot updates combined by [DashGit](https://javiertuya.github.io/dashgit). Includes: - [Bump Microsoft.NET.Test.Sdk from 18.6.0 to 18.7.0](#274) - [Bump actions/setup-dotnet from 5.3.0 to 5.4.0](#273) - [Bump mikepenz/action-junit-report from 6.4.1 to 6.4.2](#272) - [Bump actions/checkout from 6 to 7](#270) - [Bump org.sonatype.central:central-publishing-maven-plugin from 0.10.0 to 0.11.0 in /java](#271)
1 parent 93bacd1 commit 9b5207d

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Checkout GitHub repo
15-
uses: actions/checkout@v6
15+
uses: actions/checkout@v7
1616
#Official documentation seems incomplete. To avoid failure when importing key:
1717
#https://stackoverflow.com/questions/61096521/how-to-use-gpg-key-in-github-actions
1818
#It requires export the private key with the armor option: gpg --output private.pgm --armor --export-secret-key <email>
@@ -49,9 +49,9 @@ jobs:
4949
contents: read
5050
packages: write
5151
steps:
52-
- uses: actions/checkout@v6
52+
- uses: actions/checkout@v7
5353

54-
- uses: actions/setup-dotnet@v5.3.0
54+
- uses: actions/setup-dotnet@v5.4.0
5555
with:
5656
dotnet-version: '10.0.x'
5757
- name: Pack

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
#if: ${{ false }} # disable for now
1919
steps:
2020
- name: Checkout GitHub repo
21-
uses: actions/checkout@v6
21+
uses: actions/checkout@v7
2222
- name: Select Java Version
2323
uses: actions/setup-java@v5
2424
with:
@@ -30,7 +30,7 @@ jobs:
3030
run: mvn test -Dmaven.test.failure.ignore=true -U --no-transfer-progress
3131
- name: Publish test report
3232
if: always()
33-
uses: mikepenz/action-junit-report@v6.4.1
33+
uses: mikepenz/action-junit-report@v6.4.2
3434
with:
3535
check_name: test-report-java
3636
report_paths: '**/target/surefire-reports/TEST-*.xml'
@@ -56,9 +56,9 @@ jobs:
5656
checks: write
5757
packages: read
5858
steps:
59-
- uses: actions/checkout@v6
59+
- uses: actions/checkout@v7
6060

61-
- uses: actions/setup-dotnet@v5.3.0
61+
- uses: actions/setup-dotnet@v5.4.0
6262
with:
6363
dotnet-version: '10.0.x'
6464

java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
<plugin>
126126
<groupId>org.sonatype.central</groupId>
127127
<artifactId>central-publishing-maven-plugin</artifactId>
128-
<version>0.10.0</version>
128+
<version>0.11.0</version>
129129
<extensions>true</extensions>
130130
<configuration>
131131
<publishingServerId>central</publishingServerId>

net/TestVisualAssert/TestVisualAssert.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.6.0" />
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.7.0" />
1111

1212
<PackageReference Include="NUnit" Version="4.6.1" />
1313

0 commit comments

Comments
 (0)