Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 9, 2024
1 parent db8beb8 commit 25a33a4
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
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: 8.0.402
version: 8.0.403

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

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

- task: Cache@2
displayName: Cache packages
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ 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
show-progress: false

- name: Cache packages
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.1
with:
path: ${{ env.NUGET_PACKAGES }}
key: ${{ runner.os }}-nuget-${{ hashFiles('.config/dotnet-tools.json', '**/packages.lock.json') }}
Expand All @@ -46,7 +46,7 @@ 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
Expand All @@ -56,10 +56,10 @@ jobs:
uses: actions/[email protected]
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 8.0.402
dotnet-version: 8.0.403

- name: Cache packages
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.1
with:
path: ${{ env.NUGET_PACKAGES }}
key: ${{ runner.os }}-nuget-${{ hashFiles('.config/dotnet-tools.json', '**/packages.lock.json') }}
Expand All @@ -72,7 +72,7 @@ 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
Expand All @@ -82,10 +82,10 @@ jobs:
uses: actions/[email protected]
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 8.0.402
dotnet-version: 8.0.403

- name: Cache packages
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.1
with:
path: ${{ env.NUGET_PACKAGES }}
key: ${{ runner.os }}-nuget-${{ hashFiles('.config/dotnet-tools.json', '**/packages.lock.json') }}
Expand All @@ -98,7 +98,7 @@ 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
Expand All @@ -108,10 +108,10 @@ jobs:
uses: actions/[email protected]
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 8.0.402
dotnet-version: 8.0.403

- name: Cache packages
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.1
with:
path: ${{ env.NUGET_PACKAGES }}
key: ${{ runner.os }}-nuget-${{ hashFiles('.config/dotnet-tools.json', '**/packages.lock.json') }}
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 8.0.402
- curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 8.0.403
- 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 8.0.402
# - curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 8.0.403
# - 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 8.0.402"'
- '&powershell -NoProfile -ExecutionPolicy Unrestricted -Command "&([scriptblock]::Create((Invoke-WebRequest -UseBasicParsing https://dot.net/v1/dotnet-install.ps1))) -Version 8.0.403"'
- $env:DOTNET_ROOT="$env:LocalAppData\Microsoft\dotnet" ; $env:PATH="$env:DOTNET_ROOT;$env:PATH"
- dotnet tool restore ; dotnet cake --verbosity=verbose

0 comments on commit 25a33a4

Please sign in to comment.