Skip to content

Commit

Permalink
Merge branch 'release/3.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Oct 11, 2023
2 parents e6886ac + 187d70a commit fd7dc1f
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: windows-2022
steps:
- name: Get the sources
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- name: Fetch all tags and branches
run: git fetch --prune --unshallow
- name: Install .NET
Expand All @@ -22,7 +22,7 @@ jobs:
run: .\build.ps1
shell: powershell
- name: Publish NuGet package as build artifact
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
with:
name: NuGet Package
path: ./BuildArtifacts/Packages/NuGet/
Expand All @@ -33,7 +33,7 @@ jobs:
runs-on: windows-2019
steps:
- name: Get the sources
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- name: Install required tools
run: npm install -g markdownlint-cli
shell: powershell
Expand All @@ -52,7 +52,7 @@ jobs:
working-directory: ./tests/script-runner/
shell: powershell
- name: Publish generated reports as build artifact
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
with:
name: Integration Tests Script Runner Windows (.NET Core tool)
path: ./tests/script-runner/BuildArtifacts/output/
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public override void PublishIssuesArtifacts(IIssuesContext context)
context.State.SarifReport != null &&
context.FileExists(context.State.SarifReport))
{
context.AzurePipelines().Commands.UploadArtifact("Issues", context.State.SarifReport, "CodeAnalysisLogs");
context.AzurePipelines().Commands.UploadArtifact("CodeAnalysisLogs", context.State.SarifReport, "CodeAnalysisLogs");
}

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ For recipe compatible with Cake Script Runners see Cake.Issues.Recipe.</Descript
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/cake-contrib/Cake.Issues.Recipe.git</RepositoryUrl>
<PackageReleaseNotes>https://github.com/cake-contrib/Cake.Issues.Recipe/releases/tag/3.1.0</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/cake-contrib/Cake.Issues.Recipe/releases/tag/3.1.1</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
Expand All @@ -36,7 +36,7 @@ For recipe compatible with Cake Script Runners see Cake.Issues.Recipe.</Descript
</ItemGroup>

<ItemGroup>
<PackageReference Include="Cake.AzureDevOps" Version="3.0.0" />
<PackageReference Include="Cake.AzureDevOps" Version="3.0.1" />
<PackageReference Include="Cake.Frosting" Version="3.0.0" PrivateAssets="All" />
<PackageReference Include="Cake.Git" Version="3.0.0" />
<PackageReference Include="Cake.Issues" Version="3.0.0" />
Expand Down
2 changes: 1 addition & 1 deletion Cake.Issues.Recipe/Content/addins.cake
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
#addin nuget:?package=Cake.Issues.PullRequests.AppVeyor&version=3.0.0
#addin nuget:?package=Cake.Issues.PullRequests.AzureDevOps&version=3.0.0
#addin nuget:?package=Cake.Issues.PullRequests.GitHubActions&version=3.0.0
#addin nuget:?package=Cake.AzureDevOps&version=3.0.0
#addin nuget:?package=Cake.AzureDevOps&version=3.0.1
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public class AzureDevOpsBuildServer : BaseBuildServer
data.SarifReport != null &&
context.FileExists(data.SarifReport))
{
context.AzurePipelines().Commands.UploadArtifact("Issues", data.SarifReport, "CodeAnalysisLogs");
context.AzurePipelines().Commands.UploadArtifact("CodeAnalysisLogs", data.SarifReport, "CodeAnalysisLogs");
}
}
}
2 changes: 1 addition & 1 deletion docs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Cake.Issues recipes will add the following addins to your build:
| [Cake.Issues.PullRequests.AppVeyor] 3.0.0 | [Cake.Issues.PullRequests.AppVeyor] 3.0.0 | |
| [Cake.Issues.PullRequests.AzureDevOps] 3.0.0 | [Cake.Issues.PullRequests.AzureDevOps] 3.0.0 | |
| [Cake.Issues.PullRequests.GitHubActions] 3.0.0 | [Cake.Issues.PullRequests.GitHubActions] 3.0.0 | |
| [Cake.AzureDevOps] 3.0.0 | [Cake.AzureDevOps] 3.0.0 | |
| [Cake.AzureDevOps] 3.0.1 | [Cake.AzureDevOps] 3.0.1 | |

[Cake.Issues.Recipe]: https://www.nuget.org/packages/Cake.Issues.Recipe
[Cake.Frosting.Issues.Recipe]: https://www.nuget.org/packages/Cake.Frosting.Issues.Recipe
Expand Down
2 changes: 1 addition & 1 deletion nuspec/nuget/Cake.Issues.Recipe.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ For recipe compatible with Cake Frosting see Cake.Frosting.Issues.Recipe.
<repository type="git" url="https://github.com/cake-contrib/Cake.Issues.Recipe.git"/>
<copyright>Copyright © Pascal Berger</copyright>
<tags>cake cake-recipe cake-issues</tags>
<releaseNotes>https://github.com/cake-contrib/Cake.Issues.Recipe/releases/tag/3.1.0</releaseNotes>
<releaseNotes>https://github.com/cake-contrib/Cake.Issues.Recipe/releases/tag/3.1.1</releaseNotes>
</metadata>
<files>
<file src="icon.png" target="" />
Expand Down
2 changes: 1 addition & 1 deletion recipe.cake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#load nuget:?package=Cake.Recipe&version=3.0.1
#load nuget:?package=Cake.Recipe&version=3.1.1

//*************************************************************************************************
// Settings
Expand Down

0 comments on commit fd7dc1f

Please sign in to comment.