Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .azure-pipelines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
displayName: Install dotnet
inputs:
# renovate: datasource=dotnet depName=dotnet-sdk
version: 10.0.100
version: 10.0.101

- task: Cache@2
displayName: Cache packages
Expand All @@ -70,7 +70,7 @@ jobs:
displayName: Install dotnet
inputs:
# renovate: datasource=dotnet depName=dotnet-sdk
version: 10.0.100
version: 10.0.101

- task: Cache@2
displayName: Cache packages
Expand All @@ -94,7 +94,7 @@ jobs:
displayName: Install dotnet
inputs:
# renovate: datasource=dotnet depName=dotnet-sdk
version: 10.0.100
version: 10.0.101

- task: Cache@2
displayName: Cache packages
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
container: dockfool/cake-docker:latest
steps:
- name: Checkout source
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
fetch-depth: 0
filter: tree:0
Expand All @@ -46,17 +46,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
fetch-depth: 0
filter: tree:0
show-progress: false

- name: Install dotnet
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 10.0.100
dotnet-version: 10.0.101

- name: Cache packages
uses: actions/[email protected]
Expand All @@ -72,17 +72,17 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout source
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
fetch-depth: 0
filter: tree:0
show-progress: false

- name: Install dotnet
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 10.0.100
dotnet-version: 10.0.101

- name: Cache packages
uses: actions/[email protected]
Expand All @@ -98,17 +98,17 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout source
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
fetch-depth: 0
filter: tree:0
show-progress: false

- name: Install dotnet
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 10.0.100
dotnet-version: 10.0.101

- name: Cache packages
uses: actions/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ build-linux:
files: [ packages.lock.json ]
script:
# renovate: datasource=dotnet depName=dotnet-sdk
- curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 10.0.100
- curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 10.0.101
- export DOTNET_ROOT=$HOME/.dotnet && export PATH=$DOTNET_ROOT:$PATH
- dotnet tool restore && dotnet cake --verbosity=verbose

Expand All @@ -52,7 +52,7 @@ build-linux:
# files: [ packages.lock.json ]
# script:
# # renovate: datasource=dotnet depName=dotnet-sdk
# - curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 10.0.100
# - curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 10.0.101
# - export DOTNET_ROOT=$HOME/.dotnet && export PATH=$DOTNET_ROOT:$PATH
# - dotnet tool restore && dotnet cake --verbosity=verbose

Expand All @@ -66,6 +66,6 @@ build-windows:
files: [ packages.lock.json ]
script:
# renovate: datasource=dotnet depName=dotnet-sdk
- '&powershell -NoProfile -ExecutionPolicy Unrestricted -Command "&([scriptblock]::Create((Invoke-WebRequest -UseBasicParsing https://dot.net/v1/dotnet-install.ps1))) -Version 10.0.100"'
- '&powershell -NoProfile -ExecutionPolicy Unrestricted -Command "&([scriptblock]::Create((Invoke-WebRequest -UseBasicParsing https://dot.net/v1/dotnet-install.ps1))) -Version 10.0.101"'
- $env:DOTNET_ROOT="$env:LocalAppData\Microsoft\dotnet" ; $env:PATH="$env:DOTNET_ROOT;$env:PATH"
- dotnet tool restore ; dotnet cake --verbosity=verbose
2 changes: 1 addition & 1 deletion scripts/bootstrap.cake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#addin nuget:?package=Cake.Docker&version=1.3.0

#tool dotnet:?package=dotnet-reportgenerator-globaltool&version=5.5.0
#tool dotnet:?package=dotnet-reportgenerator-globaltool&version=5.5.1
#tool dotnet:?package=GitVersion.Tool&version=5.12.0

#load aliases.cake
Expand Down