Skip to content

Commit 532ecb0

Browse files
authored
Merge pull request #112 from gitfool/renovate/minor
2 parents 546cdde + 281a030 commit 532ecb0

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.azure-pipelines.yaml

+1-1
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: 8.0.201
28+
version: 8.0.203
2929

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

.github/workflows/ci.yaml

+3-3
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: 8.0.201
35+
dotnet-version: 8.0.203
3636

3737
- name: Docker login
3838
if: github.event_name != 'pull_request'
39-
uses: docker/login-action@v3.0.0
39+
uses: docker/login-action@v3.1.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.1.0
50+
uses: docker/setup-buildx-action@v3.2.0
5151

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

.gitlab-ci.yml

+1-1
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 8.0.201
28+
- curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 8.0.203
2929
- export DOTNET_ROOT=$HOME/.dotnet && export PATH=$DOTNET_ROOT:$PATH
3030
- dotnet tool restore && dotnet cake --verbosity=verbose

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1
2-
FROM mcr.microsoft.com/dotnet/sdk:8.0.201-jammy
2+
FROM mcr.microsoft.com/dotnet/sdk:8.0.203-jammy
33

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

@@ -60,7 +60,7 @@ EOF
6060
RUN <<EOF
6161
set -ex
6262
[ "$TARGETARCH" = "amd64" ] && arch="amd64" || arch="arm64"
63-
version=0.13.0
63+
version=0.13.1
6464
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
6565
chmod +x /usr/local/lib/docker/cli-plugins/docker-buildx
6666
docker buildx version
@@ -71,7 +71,7 @@ EOF
7171
RUN <<EOF
7272
set -ex
7373
[ "$TARGETARCH" = "amd64" ] && arch="x86_64" || arch="aarch64"
74-
version=2.24.7
74+
version=2.25.0
7575
curl -fsSL https://github.com/docker/compose/releases/download/v$version/docker-compose-linux-$arch -o /usr/local/lib/docker/cli-plugins/docker-compose
7676
chmod +x /usr/local/lib/docker/cli-plugins/docker-compose
7777
docker compose version

0 commit comments

Comments
 (0)