Skip to content

Commit 76ff9eb

Browse files
authored
Added index overload to seteach (#322)
* Added SetEach overloads for including the index of the entry being modified - Closes #321 * Added README.md to nupkg - Closes #296
1 parent 1a45247 commit 76ff9eb

6 files changed

Lines changed: 883 additions & 50 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
fetch-depth: 0
2525

2626
- name: Install GitVersion
27-
uses: gittools/actions/gitversion/setup@v0.10.2
27+
uses: gittools/actions/gitversion/setup@v1.1.1
2828
with:
2929
versionSpec: '5.x'
3030

3131
- name: Use GitVersion
3232
id: gitversion # step id used as reference for output values
33-
uses: gittools/actions/gitversion/execute@v0.10.2
33+
uses: gittools/actions/gitversion/execute@v1.1.1
3434
with:
3535
useConfigFile: true
3636
configFilePath: ./GitVersion.yml
@@ -44,7 +44,7 @@ jobs:
4444
informationalVersion: ${{ steps.gitversion.outputs.InformationalVersion }}
4545

4646
- name: Setup dotnet v8.0
47-
uses: actions/setup-dotnet@v3.0.2
47+
uses: actions/setup-dotnet@v4.0.0
4848
with:
4949
dotnet-version: '8.x' # SDK Version to use.
5050

@@ -59,7 +59,7 @@ jobs:
5959

6060
- name: Generate coverage report
6161
# run: reportgenerator -reports:**/coverage.cobertura.xml -targetdir:Report -reporttypes:HtmlInline_AzurePipelines;Cobertura
62-
uses: danielpalme/ReportGenerator-GitHub-Action@5.2.0
62+
uses: danielpalme/ReportGenerator-GitHub-Action@5.2.3
6363
with:
6464
reports: "**/coverage*cobertura.xml"
6565
targetdir: "Report"
@@ -108,12 +108,12 @@ jobs:
108108

109109
steps:
110110
- name: Download packages
111-
uses: actions/download-artifact@v4.1.3
111+
uses: actions/download-artifact@v4.1.4
112112
with:
113113
name: packages
114114

115115
- name: Setup nuget
116-
uses: nuget/setup-nuget@v1
116+
uses: nuget/setup-nuget@v2
117117

118118
- name: Publish to MyGet.org
119119
env:
@@ -129,12 +129,12 @@ jobs:
129129
steps:
130130

131131
- name: Download packages
132-
uses: actions/download-artifact@v4.1.3
132+
uses: actions/download-artifact@v4.1.4
133133
with:
134134
name: packages
135135

136136
- name: Download version
137-
uses: actions/download-artifact@v4.1.3
137+
uses: actions/download-artifact@v4.1.4
138138
with:
139139
name: version
140140

@@ -149,7 +149,7 @@ jobs:
149149
run: Add-Content -Path ${env:GITHUB_ENV} "`nprojectName=$(${env:GITHUB_REPOSITORY}.substring(${env:GITHUB_REPOSITORY}.IndexOf('/') + 1))" -Encoding utf8
150150

151151
- name: Setup nuget
152-
uses: nuget/setup-nuget@v1
152+
uses: nuget/setup-nuget@v2
153153

154154
- name: Publish to GitHub
155155
env:

ModelBuilder.UnitTests/ModelBuilder.UnitTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<PrivateAssets>all</PrivateAssets>
2525
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2626
</PackageReference>
27-
<PackageReference Include="coverlet.msbuild" Version="6.0.1">
27+
<PackageReference Include="coverlet.msbuild" Version="6.0.2">
2828
<PrivateAssets>all</PrivateAssets>
2929
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3030
</PackageReference>

0 commit comments

Comments
 (0)