Skip to content

Commit 95c48e2

Browse files
authored
Merge pull request #141 from gitfool/renovate/minor
2 parents 9833182 + 86d0bb6 commit 95c48e2

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.azure-pipelines.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
displayName: Install dotnet
2626
inputs:
2727
# renovate: datasource=dotnet depName=dotnet-sdk
28-
version: 9.0.203
28+
version: 9.0.305
2929

3030
- bash: dotnet tool restore && dotnet cake --verbosity=verbose
3131
displayName: Cake build

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"cake.tool": {
6-
"version": "5.0.0",
6+
"version": "5.1.0",
77
"commands": [
88
"dotnet-cake"
99
]

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ jobs:
3232
uses: actions/[email protected]
3333
with:
3434
# renovate: datasource=dotnet depName=dotnet-sdk
35-
dotnet-version: 9.0.203
35+
dotnet-version: 9.0.305
3636

3737
- name: Docker login
3838
if: github.event_name != 'pull_request'
39-
uses: docker/login-action@v3.4.0
39+
uses: docker/login-action@v3.6.0
4040
with:
4141
username: ${{ secrets.DOCKER_USERNAME }}
4242
password: ${{ secrets.DOCKER_TOKEN }}
@@ -47,7 +47,7 @@ jobs:
4747
platforms: arm64
4848

4949
- name: Setup buildx
50-
uses: docker/setup-buildx-action@v3.10.0
50+
uses: docker/setup-buildx-action@v3.11.1
5151

5252
- name: Export runtime
5353
uses: crazy-max/[email protected]

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ build:
2525
script:
2626
- curl -fsSL https://get.docker.com/ | bash -s
2727
# renovate: datasource=dotnet depName=dotnet-sdk
28-
- curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 9.0.203
28+
- curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 9.0.305
2929
- export DOTNET_ROOT=$HOME/.dotnet && export PATH=$DOTNET_ROOT:$PATH
3030
- dotnet tool restore && dotnet cake --verbosity=verbose

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1
2-
FROM mcr.microsoft.com/dotnet/sdk:9.0.203-noble
2+
FROM mcr.microsoft.com/dotnet/sdk:9.0.305-noble
33

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

@@ -29,7 +29,7 @@ EOF
2929
# renovate: datasource=nuget depName=cake.tool
3030
RUN <<EOF
3131
set -ex
32-
version=5.0.0
32+
version=5.1.0
3333
dotnet tool install cake.tool --version $version --tool-path /tools
3434
dotnet nuget locals all --clear
3535
chmod 755 /tools/dotnet-cake
@@ -45,7 +45,7 @@ ENV Cake_Settings_EnableScriptCache=true \
4545
RUN <<EOF
4646
set -ex
4747
[ "$TARGETARCH" = "amd64" ] && arch="x86_64" || arch="aarch64"
48-
version=28.0.4
48+
version=28.5.1
4949
curl -fsSL https://download.docker.com/linux/static/stable/$arch/docker-$version.tgz -o docker.tgz
5050
tar -xzf docker.tgz --directory /usr/local/bin --no-same-owner --strip=1 docker/docker
5151
rm -f docker.tgz
@@ -59,7 +59,7 @@ EOF
5959
RUN <<EOF
6060
set -ex
6161
[ "$TARGETARCH" = "amd64" ] && arch="amd64" || arch="arm64"
62-
version=0.22.0
62+
version=0.29.1
6363
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
6464
chmod +x /usr/local/lib/docker/cli-plugins/docker-buildx
6565
docker buildx version
@@ -70,7 +70,7 @@ EOF
7070
RUN <<EOF
7171
set -ex
7272
[ "$TARGETARCH" = "amd64" ] && arch="x86_64" || arch="aarch64"
73-
version=2.35.0
73+
version=2.40.0
7474
curl -fsSL https://github.com/docker/compose/releases/download/v$version/docker-compose-linux-$arch -o /usr/local/lib/docker/cli-plugins/docker-compose
7575
chmod +x /usr/local/lib/docker/cli-plugins/docker-compose
7676
docker compose version

0 commit comments

Comments
 (0)