diff --git a/.azure-pipelines.yaml b/.azure-pipelines.yaml index 05d0aaa..f466126 100644 --- a/.azure-pipelines.yaml +++ b/.azure-pipelines.yaml @@ -25,7 +25,7 @@ jobs: displayName: Install dotnet inputs: # renovate: datasource=dotnet depName=dotnet-sdk - version: 8.0.404 + version: 8.0.405 - bash: dotnet tool restore && dotnet cake --verbosity=verbose displayName: Cake build diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6565336..01cfff4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -29,10 +29,10 @@ jobs: show-progress: false - name: Install dotnet - uses: actions/setup-dotnet@v4.2.0 + uses: actions/setup-dotnet@v4.3.0 with: # renovate: datasource=dotnet depName=dotnet-sdk - dotnet-version: 8.0.404 + dotnet-version: 8.0.405 - name: Docker login if: github.event_name != 'pull_request' @@ -42,12 +42,12 @@ jobs: password: ${{ secrets.DOCKER_TOKEN }} - name: Setup qemu - uses: docker/setup-qemu-action@v3.2.0 + uses: docker/setup-qemu-action@v3.4.0 with: platforms: arm64 - name: Setup buildx - uses: docker/setup-buildx-action@v3.8.0 + uses: docker/setup-buildx-action@v3.9.0 - name: Export runtime uses: crazy-max/ghaction-github-runtime@v3.0.0 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 11f9011..6c896f8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,6 +25,6 @@ build: script: - curl -fsSL https://get.docker.com/ | bash -s # renovate: datasource=dotnet depName=dotnet-sdk - - curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 8.0.404 + - curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 8.0.405 - export DOTNET_ROOT=$HOME/.dotnet && export PATH=$DOTNET_ROOT:$PATH - dotnet tool restore && dotnet cake --verbosity=verbose diff --git a/Dockerfile b/Dockerfile index 278451c..fda981e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:1 -FROM mcr.microsoft.com/dotnet/sdk:8.0.404-jammy +FROM mcr.microsoft.com/dotnet/sdk:8.0.405-jammy LABEL org.opencontainers.image.source=/~https://github.com/gitfool/cake-docker @@ -46,7 +46,7 @@ ENV Cake_Settings_EnableScriptCache=true \ RUN <