Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Combined dependency updates (2025-01-11) #819

Merged
merged 10 commits into from
Jan 11, 2025
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4.1.0
- uses: actions/setup-dotnet@v4.2.0
with:
dotnet-version: '6.0.x'
- name: Pack
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
java-version: '11'
cache: 'maven'
- if: ${{ matrix.platform=='net' }}
uses: actions/setup-dotnet@v4.1.0
uses: actions/setup-dotnet@v4.2.0
with:
dotnet-version: '8.0.x'

Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
# skip_publishing: ${{ github.actor != 'javiertuya' }} #avoids failure on dependabot or other user PRs
- name: Generate report checks1
if: always()
uses: mikepenz/action-junit-report@v5.1.0
uses: mikepenz/action-junit-report@v5.2.0
with:
check_name: "test-result-${{ matrix.platform }}-${{ matrix.mode }}"
report_paths: "**/${{ env.REPORT_FOLDER }}/surefire-reports/TEST-*.xml"
Expand All @@ -110,7 +110,7 @@ jobs:

- if: always()
name: Publish test report files
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.5.0
with:
name: "test-report-${{ matrix.platform }}-${{ matrix.mode }}-files"
path: |
Expand All @@ -124,7 +124,7 @@ jobs:
!**/selenoid*.mp4
- name: JAVA - Reports for Sonar
if: ${{ always() && matrix.platform=='java' }}
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.5.0
with:
name: "sonar-${{ matrix.platform }}-${{ matrix.mode }}"
path: |
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
if: ${{ github.actor != 'dependabot[bot]' }}
runs-on: ubuntu-latest
steps:
- uses: javiertuya/sonarqube-action@v1.4.0
- uses: javiertuya/sonarqube-action@v1.4.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
sonar-token: ${{ secrets.SONAR_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>

<junit-jupiter.version>5.11.3</junit-jupiter.version>
<junit-jupiter.version>5.11.4</junit-jupiter.version>

<junit.version>4.13.2</junit.version>

Expand Down Expand Up @@ -230,7 +230,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.1</version>
<version>3.11.2</version>
<configuration>
<quiet>true</quiet>
<doclint>none</doclint>
Expand Down
6 changes: 3 additions & 3 deletions net/Selema/Selema.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@
<!-- required only for selenium 3
<PackageReference Include="Microsoft.Edge.SeleniumTools" Version="3.141.2" />
-->
<PackageReference Include="MSTest.TestFramework" Version="3.6.4" />
<PackageReference Include="MSTest.TestFramework" Version="3.7.0" />

<PackageReference Include="DotNetSeleniumExtras.WaitHelpers" Version="3.11.0" />

<PackageReference Include="HtmlAgilityPack" Version="1.11.71" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.72" />

<PackageReference Include="NLog" Version="5.3.4" />

Expand All @@ -60,7 +60,7 @@

<PackageReference Include="VisualAssert" Version="2.5.1" />

<PackageReference Include="WebDriverManager" Version="2.17.4" />
<PackageReference Include="WebDriverManager" Version="2.17.5" />

<PackageReference Include="Selenium.WebDriver" Version="4.27.0" />
</ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions net/SelemaTest/SelemaTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />

<PackageReference Include="MSTest.TestFramework" Version="3.6.4" />
<PackageReference Include="MSTest.TestFramework" Version="3.7.0" />

<PackageReference Include="MSTest.TestAdapter" Version="3.6.4" />
<PackageReference Include="MSTest.TestAdapter" Version="3.7.0" />

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

Expand Down
2 changes: 1 addition & 1 deletion samples/samples-selema-junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.11.3</version>
<version>5.11.4</version>
</dependency>
<dependency>
<groupId>io.github.artsok</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />

<PackageReference Include="MSTest.TestAdapter" Version="3.6.4" />
<PackageReference Include="MSTest.TestAdapter" Version="3.7.0" />

<PackageReference Include="MSTest.TestFramework" Version="3.6.4" />
<PackageReference Include="MSTest.TestFramework" Version="3.7.0" />

<PackageReference Include="Selenium.WebDriver" Version="4.27.0" />

Expand Down
Loading