-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
os: [windows-latest, ubuntu-latest, macos-latest] | ||
|
||
steps: | ||
- uses: actions/[email protected].3 | ||
- uses: actions/[email protected].4 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.event.ref }} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Run dependabot for cake | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# run everyday at 6 | ||
- cron: '0 6 * * *' | ||
|
||
jobs: | ||
dependabot-cake: | ||
runs-on: ubuntu-latest # linux, because this is a docker-action | ||
steps: | ||
- name: check/update cake dependencies | ||
uses: nils-org/dependabot-cake-action@v1 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ jobs: | |
|
||
steps: | ||
- name: checkout | ||
uses: actions/[email protected].3 #https://github.com/actions/checkout | ||
uses: actions/[email protected].4 #https://github.com/actions/checkout | ||
with: | ||
fetch-depth: 0 # GitVersion is somewhat irritated when fetch-depth is "1".... | ||
ref: ${{ github.event.ref }} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,4 +51,3 @@ docs/input/tasks/* | |
|
||
# Wyam related | ||
config.wyam.* | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="Bootstrap" type="CAKE_CONFIGURATION" factoryName="Cake configuration factory"> | ||
<option name="additionalArguments" value="--bootstrap" /> | ||
<option name="scriptPath" value="../recipe.cake" /> | ||
<method v="2" /> | ||
</configuration> | ||
</component> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="Build" type="CAKE_CONFIGURATION" factoryName="Cake configuration factory"> | ||
<option name="additionalArguments" /> | ||
<option name="scriptPath" value="../recipe.cake" /> | ||
<method v="2"> | ||
<option name="RunConfigurationTask" enabled="true" run_configuration_name="Bootstrap" run_configuration_type="CAKE_CONFIGURATION" /> | ||
</method> | ||
</configuration> | ||
</component> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="Generate Releasenotes" type="CAKE_CONFIGURATION" factoryName="Cake configuration factory"> | ||
<option name="additionalArguments" /> | ||
<option name="scriptPath" value="../recipe.cake" /> | ||
<option name="taskName" value="releasenotes" /> | ||
<method v="2"> | ||
<option name="RunConfigurationTask" enabled="true" run_configuration_name="Bootstrap" run_configuration_type="CAKE_CONFIGURATION" /> | ||
</method> | ||
</configuration> | ||
</component> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
using Cake.Core; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
using System.Runtime.CompilerServices; | ||
|
||
// This file enables generation of namespace documentation, | ||
// see https://cakebuild.net/community/contributing/documentation#namespaces. | ||
#pragma warning disable SA1403 // File may only contain a single namespace | ||
#pragma warning disable SA1649 // File name should match first type name | ||
#pragma warning disable SA1402 // File may only contain a single type | ||
|
||
// ReSharper disable UnusedMember.Global | ||
// ReSharper disable UnusedType.Global | ||
namespace Cake.SevenZip | ||
{ | ||
/// <summary> | ||
/// This namespace contain types related to running 7zip. | ||
/// </summary> | ||
[CompilerGenerated] | ||
internal class NamespaceDoc | ||
{ | ||
} | ||
} | ||
|
||
namespace Cake.SevenZip.Arguments | ||
{ | ||
/// <summary> | ||
/// This namespace contain types related to running 7zip. | ||
/// </summary> | ||
[CompilerGenerated] | ||
internal class NamespaceDoc | ||
{ | ||
} | ||
} | ||
|
||
namespace Cake.SevenZip.Builder | ||
{ | ||
/// <summary> | ||
/// This namespace contain types related to running 7zip. | ||
/// </summary> | ||
[CompilerGenerated] | ||
internal class NamespaceDoc | ||
{ | ||
} | ||
} | ||
|
||
namespace Cake.SevenZip.Commands | ||
{ | ||
/// <summary> | ||
/// This namespace contain types related to running 7zip. | ||
/// </summary> | ||
[CompilerGenerated] | ||
internal class NamespaceDoc | ||
{ | ||
} | ||
} | ||
|
||
namespace Cake.SevenZip.Parsers | ||
{ | ||
/// <summary> | ||
/// This namespace contain types related to running 7zip. | ||
/// </summary> | ||
[CompilerGenerated] | ||
internal class NamespaceDoc | ||
{ | ||
} | ||
} | ||
|
||
namespace Cake.SevenZip.Switches | ||
{ | ||
/// <summary> | ||
/// This namespace contain types related to running 7zip. | ||
/// </summary> | ||
[CompilerGenerated] | ||
internal class NamespaceDoc | ||
{ | ||
} | ||
} | ||
|
||
#pragma warning restore SA1403 // File may only contain a single namespace | ||
#pragma warning restore SA1649 // File name should match first type name | ||
#pragma warning restore SA1402 // File may only contain a single type |