diff --git a/.azure-pipelines.yaml b/.azure-pipelines.yaml index 171e1a4..6fde2a0 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: 9.0.203 + version: 9.0.305 - bash: dotnet tool restore && dotnet cake --verbosity=verbose displayName: Cake build diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 43e6f74..2f574d6 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "cake.tool": { - "version": "5.0.0", + "version": "5.1.0", "commands": [ "dotnet-cake" ] diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5694acb..621ad09 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -32,11 +32,11 @@ jobs: uses: actions/setup-dotnet@v5.0.0 with: # renovate: datasource=dotnet depName=dotnet-sdk - dotnet-version: 9.0.203 + dotnet-version: 9.0.305 - name: Docker login if: github.event_name != 'pull_request' - uses: docker/login-action@v3.4.0 + uses: docker/login-action@v3.6.0 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_TOKEN }} @@ -47,7 +47,7 @@ jobs: platforms: arm64 - name: Setup buildx - uses: docker/setup-buildx-action@v3.10.0 + uses: docker/setup-buildx-action@v3.11.1 - name: Export runtime uses: crazy-max/ghaction-github-runtime@v3.1.0 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9e453e4..6403e2b 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 9.0.203 + - curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 9.0.305 - export DOTNET_ROOT=$HOME/.dotnet && export PATH=$DOTNET_ROOT:$PATH - dotnet tool restore && dotnet cake --verbosity=verbose diff --git a/Dockerfile b/Dockerfile index 36a7855..8dd2998 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:1 -FROM mcr.microsoft.com/dotnet/sdk:9.0.203-noble +FROM mcr.microsoft.com/dotnet/sdk:9.0.305-noble LABEL org.opencontainers.image.source=https://github.com/gitfool/cake-docker @@ -29,7 +29,7 @@ EOF # renovate: datasource=nuget depName=cake.tool RUN <