diff --git a/.azure-pipelines.yaml b/.azure-pipelines.yaml index dc63790..935bf9e 100644 --- a/.azure-pipelines.yaml +++ b/.azure-pipelines.yaml @@ -46,7 +46,7 @@ jobs: displayName: Install dotnet inputs: # renovate: datasource=dotnet depName=dotnet-sdk - version: 7.0.404 + version: 8.0.100 - task: Cache@2 displayName: Cache packages @@ -70,7 +70,7 @@ jobs: displayName: Install dotnet inputs: # renovate: datasource=dotnet depName=dotnet-sdk - version: 7.0.404 + version: 8.0.100 - task: Cache@2 displayName: Cache packages @@ -94,7 +94,7 @@ jobs: displayName: Install dotnet inputs: # renovate: datasource=dotnet depName=dotnet-sdk - version: 7.0.404 + version: 8.0.100 - task: Cache@2 displayName: Cache packages diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index bfbf0b2..cfbcb3d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -54,7 +54,7 @@ jobs: uses: actions/setup-dotnet@v3.2.0 with: # renovate: datasource=dotnet depName=dotnet-sdk - dotnet-version: 7.0.404 + dotnet-version: 8.0.100 - name: Cache packages uses: actions/cache@v3.3.2 @@ -79,7 +79,7 @@ jobs: uses: actions/setup-dotnet@v3.2.0 with: # renovate: datasource=dotnet depName=dotnet-sdk - dotnet-version: 7.0.404 + dotnet-version: 8.0.100 - name: Cache packages uses: actions/cache@v3.3.2 @@ -104,7 +104,7 @@ jobs: uses: actions/setup-dotnet@v3.2.0 with: # renovate: datasource=dotnet depName=dotnet-sdk - dotnet-version: 7.0.404 + dotnet-version: 8.0.100 - name: Cache packages uses: actions/cache@v3.3.2 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1697ee7..c63f53e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 7.0.404 + - curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 8.0.100 - export DOTNET_ROOT=$HOME/.dotnet && export PATH=$DOTNET_ROOT:$PATH - dotnet tool restore && dotnet cake --verbosity=verbose @@ -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 7.0.404 +# - curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 8.0.100 # - export DOTNET_ROOT=$HOME/.dotnet && export PATH=$DOTNET_ROOT:$PATH # - dotnet tool restore && dotnet cake --verbosity=verbose @@ -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 7.0.404"' + - '&powershell -NoProfile -ExecutionPolicy Unrestricted -Command "&([scriptblock]::Create((Invoke-WebRequest -UseBasicParsing https://dot.net/v1/dotnet-install.ps1))) -Version 8.0.100"' - $env:DOTNET_ROOT="$env:LocalAppData\Microsoft\dotnet" ; $env:PATH="$env:DOTNET_ROOT;$env:PATH" - dotnet tool restore ; dotnet cake --verbosity=verbose