Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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: 10.0.102
version: 10.0.103

- bash: dotnet tool restore && dotnet cake --verbosity=verbose
displayName: Cake build
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"cake.tool": {
"version": "6.0.0",
"version": "6.1.0",
"commands": [
"dotnet-cake"
]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v6.0.1
uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
filter: tree:0
Expand All @@ -32,11 +32,11 @@ jobs:
uses: actions/setup-dotnet@v5.1.0
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 10.0.102
dotnet-version: 10.0.103

- name: Docker login
if: github.event_name != 'pull_request'
uses: docker/login-action@v3.6.0
uses: docker/login-action@v3.7.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
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 10.0.102
- curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 10.0.103
- export DOTNET_ROOT=$HOME/.dotnet && export PATH=$DOTNET_ROOT:$PATH
- dotnet tool restore && dotnet cake --verbosity=verbose
8 changes: 4 additions & 4 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:10.0.102-noble
FROM mcr.microsoft.com/dotnet/sdk:10.0.103-noble

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

Expand Down Expand Up @@ -29,7 +29,7 @@ EOF
# renovate: datasource=nuget depName=cake.tool
RUN <<EOF
set -ex
version=6.0.0
version=6.1.0
dotnet tool install cake.tool --version $version --tool-path /tools
dotnet nuget locals all --clear
chmod 755 /tools/dotnet-cake
Expand Down Expand Up @@ -59,7 +59,7 @@ EOF
RUN <<EOF
set -ex
[ "$TARGETARCH" = "amd64" ] && arch="amd64" || arch="arm64"
version=0.30.1
version=0.31.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=5.0.1
version=5.1.0
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