Skip to content

Commit

Permalink
Combined dependency updates (2024-01-03) (#115)
Browse files Browse the repository at this point in the history
Includes these updates:
- [Bump actions/setup-dotnet from 3.2.0 to 4.0.0](#108)
- [Bump actions/upload-artifact from 3 to 4](#111)
- [Bump crazy-max/ghaction-import-gpg from 6.0.0 to 6.1.0](#110)
- [Bump javiertuya/branch-snapshots-action from 1.2.0 to 1.2.1](#109)
- [Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.2 to 3.6.3 in /java](#113)
- [Bump org.apache.maven.plugins:maven-surefire-report-plugin from 3.2.2 to 3.2.3 in /java](#114)
- [Bump NUnit from 4.0.0 to 4.0.1 in /net](#112)
  • Loading branch information
javiertuya committed Jan 3, 2024
1 parent c2df243 commit fbddf97
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
#https://stackoverflow.com/questions/61096521/how-to-use-gpg-key-in-github-actions
#It requires export the private key with the armor option: gpg --output private.pgm --armor --export-secret-key <email>
- name: Import GPG Key
uses: crazy-max/ghaction-import-gpg@v6.0.0
uses: crazy-max/ghaction-import-gpg@v6.1.0
with:
gpg_private_key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3.2.0
- uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: '6.0.x'
- name: Pack
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- if: always()
name: Publish test reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-report-java-files
#working-directory does not work here
Expand All @@ -53,7 +53,7 @@ jobs:
working-directory: net
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3.2.0
- uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: '6.0.x'

Expand All @@ -78,7 +78,7 @@ jobs:

- if: always()
name: Publish test reports files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-report-net-files
#working-directory does not work here
Expand All @@ -96,7 +96,7 @@ jobs:
run:
working-directory: java
steps:
- uses: javiertuya/branch-snapshots-action@v1.2.0
- uses: javiertuya/branch-snapshots-action@v1.2.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
working-directory: java
Expand Down
4 changes: 2 additions & 2 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>3.2.2</version>
<version>3.2.3</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.2</version>
<version>3.6.3</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 @@ -9,7 +9,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />

<PackageReference Include="NUnit" Version="4.0.0" />
<PackageReference Include="NUnit" Version="4.0.1" />

<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
</ItemGroup>
Expand Down

0 comments on commit fbddf97

Please sign in to comment.