Skip to content

Commit

Permalink
Combined dependency updates (2025-02-03)
Browse files Browse the repository at this point in the history
Dependabot updates combined by [DashGit](https://javiertuya.github.io/dashgit). Includes:
- [Bump org.seleniumhq.selenium:selenium-java from 4.27.0 to 4.28.1 in /samples/samples-selema-junit5](#831)
- [Bump io.github.javiertuya:selema from 3.2.3 to 3.3.0 in /samples/samples-selema-junit5](#830)
- [Bump org.seleniumhq.selenium:selenium-java from 4.27.0 to 4.28.1 in /samples/samples-selema-junit4](#829)
- [Bump io.github.javiertuya:selema from 3.2.3 to 3.3.0 in /samples/samples-selema-junit4](#828)
- [Bump org.seleniumhq.selenium:selenium-java from 4.27.0 to 4.28.1 in /java](#827)
- [Bump Selenium.WebDriver from 4.27.0 to 4.28.0 in /samples/samples-selema-nunit3](#826)
- [Bump Selenium.WebDriver from 4.27.0 to 4.28.0 in /samples/samples-selema-mstest2](#825)
- [Bump Selenium.WebDriver from 4.27.0 to 4.28.0 in /net](#824)
- [Bump the mstest group across 2 directories with 2 updates](#823)
- [Bump mikepenz/action-junit-report from 5.2.0 to 5.3.0](#822)
- [Bump actions/upload-artifact from 4.5.0 to 4.6.0](#821)
- [Bump actions/setup-dotnet from 4.2.0 to 4.3.0](#820)
  • Loading branch information
javiertuya authored Feb 3, 2025
1 parent 7cdd394 commit edaf12e
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
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.2.0
- uses: actions/setup-dotnet@v4.3.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 @@ -33,7 +33,7 @@ jobs:
java-version: '11'
cache: 'maven'
- if: ${{ matrix.platform=='net' }}
uses: actions/setup-dotnet@v4.2.0
uses: actions/setup-dotnet@v4.3.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.2.0
uses: mikepenz/action-junit-report@v5.3.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.5.0
uses: actions/upload-artifact@v4.6.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.5.0
uses: actions/upload-artifact@v4.6.0
with:
name: "sonar-${{ matrix.platform }}-${{ matrix.mode }}"
path: |
Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.27.0</version>
<version>4.28.1</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions net/Selema/Selema.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<!-- required only for selenium 3
<PackageReference Include="Microsoft.Edge.SeleniumTools" Version="3.141.2" />
-->
<PackageReference Include="MSTest.TestFramework" Version="3.7.0" />
<PackageReference Include="MSTest.TestFramework" Version="3.7.3" />

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

Expand All @@ -62,7 +62,7 @@

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

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

</Project>
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.7.0" />
<PackageReference Include="MSTest.TestFramework" Version="3.7.3" />

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

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

Expand Down
4 changes: 2 additions & 2 deletions samples/samples-selema-junit4/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<dependency>
<groupId>io.github.javiertuya</groupId>
<artifactId>selema</artifactId>
<version>3.2.3</version>
<version>3.3.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand All @@ -28,7 +28,7 @@
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.27.0</version>
<version>4.28.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
4 changes: 2 additions & 2 deletions samples/samples-selema-junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<dependency>
<groupId>io.github.javiertuya</groupId>
<artifactId>selema</artifactId>
<version>3.2.3</version>
<version>3.3.0</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand All @@ -33,7 +33,7 @@
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.27.0</version>
<version>4.28.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />

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

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

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

<PackageReference Include="Selema" Version="3.2.3" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />

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

<PackageReference Include="Selema" Version="3.2.3" />
</ItemGroup>
Expand Down

0 comments on commit edaf12e

Please sign in to comment.