Skip to content

Commit

Permalink
Merge pull request #136 from gitfool/renovate/minor
Browse files Browse the repository at this point in the history
  • Loading branch information
gitfool authored Feb 24, 2025
2 parents a56f1af + cb4e34c commit a781c03
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .azure-pipelines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
displayName: Install dotnet
inputs:
# renovate: datasource=dotnet depName=dotnet-sdk
version: 9.0.102
version: 9.0.200

- bash: dotnet tool restore && dotnet cake --verbosity=verbose
displayName: Cake build
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: actions/setup-dotnet@v4.3.0
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 9.0.102
dotnet-version: 9.0.200

- name: Docker login
if: github.event_name != 'pull_request'
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.102
- curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 9.0.200
- export DOTNET_ROOT=$HOME/.dotnet && export PATH=$DOTNET_ROOT:$PATH
- dotnet tool restore && dotnet cake --verbosity=verbose
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM mcr.microsoft.com/dotnet/sdk:9.0.102-noble
FROM mcr.microsoft.com/dotnet/sdk:9.0.200-noble

LABEL org.opencontainers.image.source=/~https://github.com/gitfool/cake-docker

Expand Down Expand Up @@ -59,7 +59,7 @@ EOF
RUN <<EOF
set -ex
[ "$TARGETARCH" = "amd64" ] && arch="amd64" || arch="arm64"
version=0.20.1
version=0.21.1
curl -fsSL /~https://github.com/docker/buildx/releases/download/v$version/buildx-v$version.linux-$arch -o /usr/local/lib/docker/cli-plugins/docker-buildx
chmod +x /usr/local/lib/docker/cli-plugins/docker-buildx
docker buildx version
Expand All @@ -70,7 +70,7 @@ EOF
RUN <<EOF
set -ex
[ "$TARGETARCH" = "amd64" ] && arch="x86_64" || arch="aarch64"
version=2.32.4
version=2.33.1
curl -fsSL /~https://github.com/docker/compose/releases/download/v$version/docker-compose-linux-$arch -o /usr/local/lib/docker/cli-plugins/docker-compose
chmod +x /usr/local/lib/docker/cli-plugins/docker-compose
docker compose version
Expand Down

0 comments on commit a781c03

Please sign in to comment.