From af88c2a5c486f0ab7ddbb67ff911876b0e599722 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 22:40:11 +0000 Subject: [PATCH 1/5] chore(deps): update danielpalme/reportgenerator-github-action action to v5.2.3 (#488) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [danielpalme/ReportGenerator-GitHub-Action](https://togithub.com/danielpalme/ReportGenerator-GitHub-Action) | action | patch | `5.2.2` -> `5.2.3` | --- ### Release Notes
danielpalme/ReportGenerator-GitHub-Action (danielpalme/ReportGenerator-GitHub-Action) ### [`v5.2.3`](https://togithub.com/danielpalme/ReportGenerator-GitHub-Action/releases/tag/5.2.3) [Compare Source](https://togithub.com/danielpalme/ReportGenerator-GitHub-Action/compare/5.2.2...5.2.3) [#​656](https://togithub.com/danielpalme/ReportGenerator-GitHub-Action/issues/656) Changed handling of files which are not found in source directory
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Testably/Testably.Abstractions). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8fdfca855..bde71eba6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -221,7 +221,7 @@ jobs: name: Code coverage (Windows) path: Coverage/Windows - name: Generate coverage report - uses: danielpalme/ReportGenerator-GitHub-Action@5.2.2 + uses: danielpalme/ReportGenerator-GitHub-Action@5.2.3 with: reports: "Coverage/**/coverage.cobertura.xml" targetdir: "coverage-report" From 0b5f81da441a175a389aebf61575aea92bd79d6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Breu=C3=9F?= Date: Fri, 15 Mar 2024 06:16:57 +0100 Subject: [PATCH 2/5] feat: add global.json to use latest SDK (#479) Add a [global.json](https://learn.microsoft.com/en-us/dotnet/core/tools/global-json) file to keep the used [SDK](https://dotnet.microsoft.com/en-us/download/dotnet) up-to-date. --- .github/workflows/ci.yml | 7 +++++++ .github/workflows/release.yml | 7 +++++++ Testably.Abstractions.sln | 1 + global.json | 6 ++++++ 4 files changed, 21 insertions(+) create mode 100644 global.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c382dadc3..2a7fc1537 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -116,6 +116,13 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 with: fetch-depth: 0 + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: | + 6.0.x + 7.0.x + 8.0.x - name: Setup MSBuild uses: microsoft/setup-msbuild@v2 - name: Setup VSTest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a0715ea74..648cca4f6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -164,6 +164,13 @@ jobs: run: | version="${GITHUB_REF#refs/heads/release/}" git tag "${version}" + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: | + 6.0.x + 7.0.x + 8.0.x - name: Setup MSBuild uses: microsoft/setup-msbuild@v2 - name: Setup VSTest diff --git a/Testably.Abstractions.sln b/Testably.Abstractions.sln index 485545b0c..92245a249 100644 --- a/Testably.Abstractions.sln +++ b/Testably.Abstractions.sln @@ -13,6 +13,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_", "_", "{94F99274-3518-45 Directory.Build.props = Directory.Build.props Directory.Packages.props = Directory.Packages.props Feature.Flags.props = Feature.Flags.props + global.json = global.json LICENSE = LICENSE nuget.config = nuget.config README.md = README.md diff --git a/global.json b/global.json new file mode 100644 index 000000000..9ea53c02b --- /dev/null +++ b/global.json @@ -0,0 +1,6 @@ +{ + "sdk": { + "version": "8.0.201", + "rollForward": "latestMinor" + } +} From 758b21d40730b8361601802e525cf427b1e3bc84 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 15 Mar 2024 05:29:28 +0000 Subject: [PATCH 3/5] chore(deps): update dependency dotnet-sdk to v8.0.202 (#489) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [dotnet-sdk](https://togithub.com/dotnet/sdk) | dotnet-sdk | patch | `8.0.201` -> `8.0.202` | --- ### Release Notes
dotnet/sdk (dotnet-sdk) ### [`v8.0.202`](https://togithub.com/dotnet/sdk/compare/v8.0.200...v8.0.202)
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Testably/Testably.Abstractions). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 9ea53c02b..977271732 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.201", + "version": "8.0.202", "rollForward": "latestMinor" } } From 112dc1ce757363a5ed5e04df2506056030161d5f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 15 Mar 2024 11:09:42 +0000 Subject: [PATCH 4/5] chore(deps): update dependency dotnet-sdk to v8.0.203 (#490) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [dotnet-sdk](https://togithub.com/dotnet/sdk) | dotnet-sdk | patch | `8.0.202` -> `8.0.203` | --- ### Release Notes
dotnet/sdk (dotnet-sdk) ### [`v8.0.203`](https://togithub.com/dotnet/sdk/compare/v8.0.202...v8.0.203) [Compare Source](https://togithub.com/dotnet/sdk/compare/v8.0.202...v8.0.203)
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Testably/Testably.Abstractions). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 977271732..108d42a31 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.202", + "version": "8.0.203", "rollForward": "latestMinor" } } From 1c75cf37f4940dc9bad8bebadb069a5c1d1716ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Breu=C3=9F?= Date: Fri, 15 Mar 2024 13:59:53 +0100 Subject: [PATCH 5/5] chore: Limit "renovate" to run only weekly (#491) Limit renovate to [earlyMondays](https://docs.renovatebot.com/presets-schedule/#scheduleearlymondays). This affects #236 --- renovate.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 3fe8c69d6..251944485 100644 --- a/renovate.json +++ b/renovate.json @@ -9,5 +9,6 @@ "groupName": [ "Testably.Abstractions packages" ] } ], - "ignoreDeps": [ "actions/download-artifact", "actions/upload-artifact" ] + "ignoreDeps": [ "actions/download-artifact", "actions/upload-artifact" ], + "schedule": ["before 4am on monday"] }