Skip to content

Commit dab4aa1

Browse files
authored
Merge pull request #98 from gitfool/renovate/minor
2 parents 2c2c531 + 60e787e commit dab4aa1

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.azure-pipelines.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
displayName: Install dotnet
4747
inputs:
4848
# renovate: datasource=dotnet depName=dotnet-sdk
49-
version: 7.0.402
49+
version: 7.0.404
5050

5151
- task: Cache@2
5252
displayName: Cache packages
@@ -70,7 +70,7 @@ jobs:
7070
displayName: Install dotnet
7171
inputs:
7272
# renovate: datasource=dotnet depName=dotnet-sdk
73-
version: 7.0.402
73+
version: 7.0.404
7474

7575
- task: Cache@2
7676
displayName: Cache packages
@@ -94,7 +94,7 @@ jobs:
9494
displayName: Install dotnet
9595
inputs:
9696
# renovate: datasource=dotnet depName=dotnet-sdk
97-
version: 7.0.402
97+
version: 7.0.404
9898

9999
- task: Cache@2
100100
displayName: Cache packages

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"cake.tool": {
6-
"version": "3.1.0",
6+
"version": "3.2.0",
77
"commands": [
88
"dotnet-cake"
99
]

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
uses: actions/setup-dotnet@v3.2.0
5555
with:
5656
# renovate: datasource=dotnet depName=dotnet-sdk
57-
dotnet-version: 7.0.402
57+
dotnet-version: 7.0.404
5858

5959
- name: Cache packages
6060
uses: actions/cache@v3.3.2
@@ -79,7 +79,7 @@ jobs:
7979
uses: actions/setup-dotnet@v3.2.0
8080
with:
8181
# renovate: datasource=dotnet depName=dotnet-sdk
82-
dotnet-version: 7.0.402
82+
dotnet-version: 7.0.404
8383

8484
- name: Cache packages
8585
uses: actions/cache@v3.3.2
@@ -104,7 +104,7 @@ jobs:
104104
uses: actions/setup-dotnet@v3.2.0
105105
with:
106106
# renovate: datasource=dotnet depName=dotnet-sdk
107-
dotnet-version: 7.0.402
107+
dotnet-version: 7.0.404
108108

109109
- name: Cache packages
110110
uses: actions/cache@v3.3.2

.gitlab-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ build-linux:
3838
files: [ packages.lock.json ]
3939
script:
4040
# renovate: datasource=dotnet depName=dotnet-sdk
41-
- curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 7.0.402
41+
- curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 7.0.404
4242
- export DOTNET_ROOT=$HOME/.dotnet && export PATH=$DOTNET_ROOT:$PATH
4343
- dotnet tool restore && dotnet cake --verbosity=verbose
4444

@@ -52,7 +52,7 @@ build-linux:
5252
# files: [ packages.lock.json ]
5353
# script:
5454
# # renovate: datasource=dotnet depName=dotnet-sdk
55-
# - curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 7.0.402
55+
# - curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 7.0.404
5656
# - export DOTNET_ROOT=$HOME/.dotnet && export PATH=$DOTNET_ROOT:$PATH
5757
# - dotnet tool restore && dotnet cake --verbosity=verbose
5858

@@ -66,6 +66,6 @@ build-windows:
6666
files: [ packages.lock.json ]
6767
script:
6868
# renovate: datasource=dotnet depName=dotnet-sdk
69-
- '&powershell -NoProfile -ExecutionPolicy Unrestricted -Command "&([scriptblock]::Create((Invoke-WebRequest -UseBasicParsing https://dot.net/v1/dotnet-install.ps1))) -Version 7.0.402"'
69+
- '&powershell -NoProfile -ExecutionPolicy Unrestricted -Command "&([scriptblock]::Create((Invoke-WebRequest -UseBasicParsing https://dot.net/v1/dotnet-install.ps1))) -Version 7.0.404"'
7070
- $env:DOTNET_ROOT="$env:LocalAppData\Microsoft\dotnet" ; $env:PATH="$env:DOTNET_ROOT;$env:PATH"
7171
- dotnet tool restore ; dotnet cake --verbosity=verbose

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222

2323
<ItemGroup>
2424
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
25-
<PackageReference Include="NuGetizer" Version="1.2.0" PrivateAssets="All" />
25+
<PackageReference Include="NuGetizer" Version="1.2.1" PrivateAssets="All" />
2626
</ItemGroup>
2727
</Project>

scripts/bootstrap.cake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#addin nuget:?package=Cake.Docker&version=1.2.2
1+
#addin nuget:?package=Cake.Docker&version=1.2.3
22

3-
#tool dotnet:?package=dotnet-reportgenerator-globaltool&version=5.1.26
3+
#tool dotnet:?package=dotnet-reportgenerator-globaltool&version=5.2.0
44
#tool dotnet:?package=GitVersion.Tool&version=5.12.0
55

66
#load aliases.cake

0 commit comments

Comments
 (0)