From c333717bff2c6156f63a6d9cb2afae08e049ce6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Herceg?= Date: Sat, 12 Aug 2023 15:16:51 +0200 Subject: [PATCH 01/14] Added wait to fix the flaky test --- .../Tests/Tests/Feature/ActionFilterErrorHandlingTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Samples/Tests/Tests/Feature/ActionFilterErrorHandlingTest.cs b/src/Samples/Tests/Tests/Feature/ActionFilterErrorHandlingTest.cs index 9c32e040f6..d0029146a0 100644 --- a/src/Samples/Tests/Tests/Feature/ActionFilterErrorHandlingTest.cs +++ b/src/Samples/Tests/Tests/Feature/ActionFilterErrorHandlingTest.cs @@ -48,13 +48,13 @@ public void Feature_ActionFilterErrorHandling_ActionFilterRedirect() // try the first button browser.NavigateToUrl(SamplesRouteUrls.FeatureSamples_ActionFilterErrorHandling_ActionFilterRedirect); AssertUI.Url(browser, u => !u.Contains("?redirected=true")); - browser.ElementAt("input", 0).Click(); + browser.ElementAt("input", 0).Click().Wait(1000); AssertUI.Url(browser, u => u.Contains("?redirected=true")); // try the second button browser.NavigateToUrl(SamplesRouteUrls.FeatureSamples_ActionFilterErrorHandling_ActionFilterRedirect); AssertUI.Url(browser, u => !u.Contains("?redirected=true")); - browser.ElementAt("input", 1).Click(); + browser.ElementAt("input", 1).Click().Wait(1000); AssertUI.Url(browser, u => u.Contains("?redirected=true")); }); } From 21d62d2ce1342c9bf985672bee4078da77e0b5fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Herceg?= Date: Sat, 12 Aug 2023 17:52:39 +0200 Subject: [PATCH 02/14] Fixed flaky redirect test in SPA --- .../Tests/Feature/PostbackConcurrencyTests.cs | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/Samples/Tests/Tests/Feature/PostbackConcurrencyTests.cs b/src/Samples/Tests/Tests/Feature/PostbackConcurrencyTests.cs index f6471963a0..16a7a559a5 100644 --- a/src/Samples/Tests/Tests/Feature/PostbackConcurrencyTests.cs +++ b/src/Samples/Tests/Tests/Feature/PostbackConcurrencyTests.cs @@ -1,6 +1,7 @@ using System.Threading; using DotVVM.Samples.Tests.Base; using DotVVM.Testing.Abstractions; +using OpenQA.Selenium; using Riganti.Selenium.Core; using Riganti.Selenium.Core.Abstractions.Attributes; using Riganti.Selenium.DotVVM; @@ -256,11 +257,27 @@ public void Feature_PostbackConcurrency_RedirectPostbackQueueSpa_PostbackFromPre browser.ElementAt("input[type=button]", 0).Click(); browser.ElementAt("input[type=button]", 2).Click(); + var attempt = 0; while (!browser.CurrentUrl.Contains("?time")) { + attempt++; + if (attempt > 50) + { + Assert.Fail("The redirect didn't happen."); + } + Thread.Sleep(100); - AssertUI.TextNotEquals(browser.Single(".result"), "1"); + try + { + AssertUI.TextNotEquals(browser.Single(".result"), "1", waitForOptions: WaitForOptions.Disabled); + } + catch (StaleElementReferenceException) + { + // ignore + break; + } } + AssertUI.Url(browser, u => u.Contains("?time")); for (int i = 0; i < 8; i++) { From 50639112740cc895d9a0a01aef7d91f37b5a62d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Herceg?= Date: Sat, 12 Aug 2023 19:12:36 +0200 Subject: [PATCH 03/14] Updated Selenium utils to add more logging --- .../Tests/Complex/SPAErrorReportingTests.cs | 3 ++- .../Tests/Tests/DotVVM.Samples.Tests.csproj | 16 ++++++++-------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/src/Samples/Tests/Tests/Complex/SPAErrorReportingTests.cs b/src/Samples/Tests/Tests/Complex/SPAErrorReportingTests.cs index c780a6b61f..db5b0ea1e0 100644 --- a/src/Samples/Tests/Tests/Complex/SPAErrorReportingTests.cs +++ b/src/Samples/Tests/Tests/Complex/SPAErrorReportingTests.cs @@ -4,6 +4,7 @@ using DotVVM.Samples.Tests.Base; using DotVVM.Testing.Abstractions; using OpenQA.Selenium.Chrome; +using OpenQA.Selenium.Chromium; using Riganti.Selenium.Core; using Riganti.Selenium.Core.Abstractions.Attributes; using Riganti.Selenium.DotVVM; @@ -31,7 +32,7 @@ public void Complex_SPAErrorReporting_NavigationAndPostbacks() void SetOfflineMode(bool offline) { - ((ChromeDriver)browser.Driver).NetworkConditions = new ChromeNetworkConditions() { + ((ChromeDriver)browser.Driver).NetworkConditions = new ChromiumNetworkConditions() { IsOffline = offline, Latency = TimeSpan.FromMilliseconds(5), DownloadThroughput = 500 * 1024, diff --git a/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj b/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj index 1e4167c204..8af473670d 100644 --- a/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj +++ b/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj @@ -6,7 +6,7 @@ - + @@ -14,13 +14,13 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - - + + + + + + + From c615408c2b607b97f37075957f8ee252e206b29d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Herceg?= Date: Sun, 13 Aug 2023 10:37:44 +0200 Subject: [PATCH 04/14] Fixed launchSettings.json files --- src/Samples/Api.Owin/Properties/launchSettings.json | 5 +++-- src/Samples/AspNetCore/Properties/launchSettings.json | 1 + src/Samples/AspNetCoreLatest/Properties/launchSettings.json | 1 + src/Samples/Owin/Properties/launchSettings.json | 5 +++-- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/Samples/Api.Owin/Properties/launchSettings.json b/src/Samples/Api.Owin/Properties/launchSettings.json index 8d33da700a..16f8b584bd 100644 --- a/src/Samples/Api.Owin/Properties/launchSettings.json +++ b/src/Samples/Api.Owin/Properties/launchSettings.json @@ -3,10 +3,11 @@ "DotVVM.Samples.BasicSamples.Api.Owin": { "commandName": "Project", "launchBrowser": true, + "launchUrl": "http://localhost:61453", + "applicationUrl": "http://localhost:61453", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" - }, - "applicationUrl": "http://localhost:61453" + } } } } diff --git a/src/Samples/AspNetCore/Properties/launchSettings.json b/src/Samples/AspNetCore/Properties/launchSettings.json index 70ca5a293a..456a553df2 100644 --- a/src/Samples/AspNetCore/Properties/launchSettings.json +++ b/src/Samples/AspNetCore/Properties/launchSettings.json @@ -4,6 +4,7 @@ "commandName": "Project", "launchBrowser": true, "launchUrl": "http://localhost:16019", + "applicationUrl": "http://localhost:16019", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } diff --git a/src/Samples/AspNetCoreLatest/Properties/launchSettings.json b/src/Samples/AspNetCoreLatest/Properties/launchSettings.json index 70ca5a293a..456a553df2 100644 --- a/src/Samples/AspNetCoreLatest/Properties/launchSettings.json +++ b/src/Samples/AspNetCoreLatest/Properties/launchSettings.json @@ -4,6 +4,7 @@ "commandName": "Project", "launchBrowser": true, "launchUrl": "http://localhost:16019", + "applicationUrl": "http://localhost:16019", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } diff --git a/src/Samples/Owin/Properties/launchSettings.json b/src/Samples/Owin/Properties/launchSettings.json index 15d9c829a0..00ab196b05 100644 --- a/src/Samples/Owin/Properties/launchSettings.json +++ b/src/Samples/Owin/Properties/launchSettings.json @@ -3,10 +3,11 @@ "DotVVM.Samples.BasicSamples.Owin": { "commandName": "Project", "launchBrowser": true, + "launchUrl": "http://localhost:5407", + "applicationUrl": "http://localhost:5407", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" - }, - "applicationUrl": "http://localhost:5407" + } } } } From 71f62514545783acd49b1e64a10687091f742041 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Herceg?= Date: Sun, 13 Aug 2023 11:09:59 +0200 Subject: [PATCH 05/14] Updated to Selenium Utils 3.0.0-preview12-final --- .../Tests/Tests/DotVVM.Samples.Tests.csproj | 21 ++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj b/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj index 8af473670d..1a8698c89c 100644 --- a/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj +++ b/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj @@ -3,6 +3,9 @@ net6.0 false + + + @@ -14,13 +17,17 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - - + + + + + + + + + + + From cc951ffc92ab3a98eaf2738f208e3ee5f426c7a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Herceg?= Date: Sun, 13 Aug 2023 15:57:36 +0200 Subject: [PATCH 06/14] Updated Selenium Utils to 3.0.0-preview13-final --- src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj b/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj index 1a8698c89c..ee60f8828b 100644 --- a/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj +++ b/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj @@ -20,9 +20,9 @@ - - - + + + From a2e83a32b54a05993824f06f7d609287b5104cec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Herceg?= Date: Tue, 15 Aug 2023 12:28:34 +0200 Subject: [PATCH 07/14] Selenium packages updated to the latest version --- .../DotVVM.Framework.Testing.SeleniumHelpers.csproj | 4 ++-- src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Framework/Testing.SeleniumHelpers/DotVVM.Framework.Testing.SeleniumHelpers.csproj b/src/Framework/Testing.SeleniumHelpers/DotVVM.Framework.Testing.SeleniumHelpers.csproj index e064bfffb9..f3ac4705a4 100644 --- a/src/Framework/Testing.SeleniumHelpers/DotVVM.Framework.Testing.SeleniumHelpers.csproj +++ b/src/Framework/Testing.SeleniumHelpers/DotVVM.Framework.Testing.SeleniumHelpers.csproj @@ -5,8 +5,8 @@ - - + + diff --git a/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj b/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj index ee60f8828b..788bb56462 100644 --- a/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj +++ b/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj @@ -10,6 +10,8 @@ + + From c9e0efa89c23daca797e07cb9fe8e5a2d21172d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0t=C4=9Bp=C3=A1nek?= Date: Tue, 15 Aug 2023 16:40:15 +0200 Subject: [PATCH 08/14] Update Ubuntu packages during CI setup --- .github/setup/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/setup/action.yml b/.github/setup/action.yml index 1c22ee72f5..0c40600c1a 100644 --- a/.github/setup/action.yml +++ b/.github/setup/action.yml @@ -11,6 +11,10 @@ runs: using: composite steps: + - if: ${{ runner.os == 'Linux' }} + run: apt-get update -y && apt-get upgrade -y + shell: bash + # nuget - uses: nuget/setup-nuget@v1 with: From 88dc697f483460ede5d739576177b5d9c1238cd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0t=C4=9Bp=C3=A1nek?= Date: Tue, 15 Aug 2023 16:44:26 +0200 Subject: [PATCH 09/14] Add a sudo --- .github/setup/action.yml | 2 +- src/Samples/Tests/Tests/seleniumconfig.json | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/setup/action.yml b/.github/setup/action.yml index 0c40600c1a..4eee2dee81 100644 --- a/.github/setup/action.yml +++ b/.github/setup/action.yml @@ -12,7 +12,7 @@ runs: steps: - if: ${{ runner.os == 'Linux' }} - run: apt-get update -y && apt-get upgrade -y + run: sudo apt-get update -y && sudo apt-get upgrade -y shell: bash # nuget diff --git a/src/Samples/Tests/Tests/seleniumconfig.json b/src/Samples/Tests/Tests/seleniumconfig.json index 7a5fb817d1..40aa02796b 100644 --- a/src/Samples/Tests/Tests/seleniumconfig.json +++ b/src/Samples/Tests/Tests/seleniumconfig.json @@ -1,8 +1,6 @@ { "factories": { - "chrome:fast": { - "capabilities": [ "--headless" ] - } + "firefox:fast": {} }, "baseUrls": [ "http://localhost:16019/" From d200829fed28f0d788145995ac05e079f03887fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Herceg?= Date: Sat, 26 Aug 2023 10:44:54 +0200 Subject: [PATCH 10/14] Updated Selenium Utils to 3.0.0-preview14-final --- src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj b/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj index 788bb56462..32c695f990 100644 --- a/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj +++ b/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj @@ -9,12 +9,12 @@ - + - + all runtime; build; native; contentfiles; analyzers; buildtransitive @@ -22,9 +22,9 @@ - - - + + + From 5c5f2973900507f397510bb77f05670359e69df2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0t=C4=9Bp=C3=A1nek?= Date: Mon, 28 Aug 2023 09:58:32 +0200 Subject: [PATCH 11/14] Squashed commit of the following: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit commit d5a20a3f1351a5194ec11164c15a5a7abcc9fe7e Author: Adam Štěpánek Date: Tue Aug 22 12:52:24 2023 +0200 Update selenium-utils commit a6a85a7c34b75c962615bb595b2bf9e2e0747203 Author: Adam Štěpánek Date: Mon Aug 21 18:31:33 2023 +0200 Fix build commit e99ee7dde8e4daa1e718d0340c6ec022293462f4 Author: Adam Štěpánek Date: Mon Aug 21 18:23:21 2023 +0200 Bump JSON commit 1ef376d56617f55a538ed41d6cfc8dd2ae003320 Author: Adam Štěpánek Date: Mon Aug 21 17:48:23 2023 +0200 Update packages commit 4d643169e505a0aa0ba03d518bbfb42d1d225950 Author: Adam Štěpánek Date: Mon Aug 21 17:18:32 2023 +0200 CI commit f33931873bc2655029ebd6008372966de0300737 Author: Adam Štěpánek Date: Mon Aug 21 17:05:45 2023 +0200 Restore nuget packages using the internal feed commit 1affbe6128140c0062c286544b85732a97557875 Author: Adam Štěpánek Date: Mon Aug 21 16:59:14 2023 +0200 Fix CI commit bf353e45e2c00efdad29e4a6ed99996265690b28 Author: Adam Štěpánek Date: Mon Aug 21 16:55:32 2023 +0200 Fix CI commit de657ca80d602107303f30dd408125aa52dc06a2 Author: Adam Štěpánek Date: Mon Aug 21 16:51:04 2023 +0200 Try out possibly fixed version of riganti/selenium-utils --- .github/uitest/action.yml | 3 ++- .github/workflows/main.yml | 4 +++- src/Analyzers/Analyzers.Tests/DotVVM.Analyzers.Tests.csproj | 2 +- .../DotVVM.Framework.Api.Swashbuckle.AspNetCore.Tests.csproj | 2 +- src/NuGet.Config | 1 - src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj | 2 +- src/Tests/DotVVM.Framework.Tests.csproj | 4 ++-- .../DotVVM.Tracing.MiniProfiler.Tests.csproj | 2 +- 8 files changed, 11 insertions(+), 9 deletions(-) diff --git a/.github/uitest/action.yml b/.github/uitest/action.yml index e91ba80cc3..bbd0d05023 100644 --- a/.github/uitest/action.yml +++ b/.github/uitest/action.yml @@ -8,7 +8,7 @@ inputs: required: false build-configuration: default: Debug - description: which --configuration to pass to dotnet build / dotnet run + description: which --configuration to pass to dotnet build / dotnet run required: false runtime-environment: default: Development @@ -25,6 +25,7 @@ inputs: runs: using: composite steps: + # run the appropriate uitest script - if: ${{ runner.os != 'Windows' }} name: uitest.sh diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d1ec15d3ef..1d40fe2483 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -139,7 +139,7 @@ jobs: name: webforms-adapters-tests title: WebForms Adapter Tests github-token: ${{ secrets.GITHUB_TOKEN }} - target-framework: net472 + target-framework: net472 js-tests: runs-on: ubuntu-latest @@ -203,6 +203,8 @@ jobs: SLN: "${{ matrix.os == 'windows-2022' && 'src/DotVVM.sln' || 'src/DotVVM.Crossplatform.slnf' }}" steps: - uses: actions/checkout@v3 + - name: Add internal NuGet feed + run: dotnet nuget add source "${{ secrets.AZURE_ARTIFACTS_FEED }}" -n riganti -u "${{ secrets.AZURE_ARTIFACTS_USERNAME }}" -p "${{ secrets.AZURE_ARTIFACTS_PAT }}" --store-password-in-clear-text - name: Set up uses: ./.github/setup with: diff --git a/src/Analyzers/Analyzers.Tests/DotVVM.Analyzers.Tests.csproj b/src/Analyzers/Analyzers.Tests/DotVVM.Analyzers.Tests.csproj index 56656ef0f0..18e58be589 100644 --- a/src/Analyzers/Analyzers.Tests/DotVVM.Analyzers.Tests.csproj +++ b/src/Analyzers/Analyzers.Tests/DotVVM.Analyzers.Tests.csproj @@ -16,7 +16,7 @@ - + all diff --git a/src/Api/Swashbuckle.AspNetCore.Tests/DotVVM.Framework.Api.Swashbuckle.AspNetCore.Tests.csproj b/src/Api/Swashbuckle.AspNetCore.Tests/DotVVM.Framework.Api.Swashbuckle.AspNetCore.Tests.csproj index 66fc0abfe7..c1057cb57f 100644 --- a/src/Api/Swashbuckle.AspNetCore.Tests/DotVVM.Framework.Api.Swashbuckle.AspNetCore.Tests.csproj +++ b/src/Api/Swashbuckle.AspNetCore.Tests/DotVVM.Framework.Api.Swashbuckle.AspNetCore.Tests.csproj @@ -6,7 +6,7 @@ - + diff --git a/src/NuGet.Config b/src/NuGet.Config index 8580449dfe..bdcd249234 100644 --- a/src/NuGet.Config +++ b/src/NuGet.Config @@ -1,7 +1,6 @@  - diff --git a/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj b/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj index 32c695f990..adf1e337f0 100644 --- a/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj +++ b/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj @@ -15,7 +15,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Tests/DotVVM.Framework.Tests.csproj b/src/Tests/DotVVM.Framework.Tests.csproj index 8e36855372..3194a2cba2 100644 --- a/src/Tests/DotVVM.Framework.Tests.csproj +++ b/src/Tests/DotVVM.Framework.Tests.csproj @@ -47,12 +47,12 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all - + diff --git a/src/Tracing/MiniProfiler.Tests/DotVVM.Tracing.MiniProfiler.Tests.csproj b/src/Tracing/MiniProfiler.Tests/DotVVM.Tracing.MiniProfiler.Tests.csproj index 94cad63099..fe966fab42 100644 --- a/src/Tracing/MiniProfiler.Tests/DotVVM.Tracing.MiniProfiler.Tests.csproj +++ b/src/Tracing/MiniProfiler.Tests/DotVVM.Tracing.MiniProfiler.Tests.csproj @@ -4,7 +4,7 @@ false - + From 828db5c6194d88e158c549efccc948e3613f8ccf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0t=C4=9Bp=C3=A1nek?= Date: Mon, 28 Aug 2023 10:01:40 +0200 Subject: [PATCH 12/14] Remove the internal nuget feed --- .github/workflows/main.yml | 2 -- src/NuGet.Config | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1d40fe2483..bf750ca4a9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -203,8 +203,6 @@ jobs: SLN: "${{ matrix.os == 'windows-2022' && 'src/DotVVM.sln' || 'src/DotVVM.Crossplatform.slnf' }}" steps: - uses: actions/checkout@v3 - - name: Add internal NuGet feed - run: dotnet nuget add source "${{ secrets.AZURE_ARTIFACTS_FEED }}" -n riganti -u "${{ secrets.AZURE_ARTIFACTS_USERNAME }}" -p "${{ secrets.AZURE_ARTIFACTS_PAT }}" --store-password-in-clear-text - name: Set up uses: ./.github/setup with: diff --git a/src/NuGet.Config b/src/NuGet.Config index bdcd249234..8580449dfe 100644 --- a/src/NuGet.Config +++ b/src/NuGet.Config @@ -1,6 +1,7 @@  + From 339506dd3cbe8aa7e1bd186c6401ccd203e40aa7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0t=C4=9Bp=C3=A1nek?= Date: Fri, 8 Sep 2023 14:05:32 +0200 Subject: [PATCH 13/14] Remove apt-get update --- .github/setup/action.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/setup/action.yml b/.github/setup/action.yml index 4eee2dee81..1c22ee72f5 100644 --- a/.github/setup/action.yml +++ b/.github/setup/action.yml @@ -11,10 +11,6 @@ runs: using: composite steps: - - if: ${{ runner.os == 'Linux' }} - run: sudo apt-get update -y && sudo apt-get upgrade -y - shell: bash - # nuget - uses: nuget/setup-nuget@v1 with: From f33d3d95e52127ae0fda526c7eb12d03b5400f5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0t=C4=9Bp=C3=A1nek?= Date: Fri, 8 Sep 2023 15:42:15 +0200 Subject: [PATCH 14/14] Bump SeleniumUtils version --- src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj b/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj index adf1e337f0..f1ad133eaa 100644 --- a/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj +++ b/src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj @@ -22,9 +22,9 @@ - - - + + +