Skip to content

Commit

Permalink
Merge pull request #129 from gitfool/renovate/minor
Browse files Browse the repository at this point in the history
  • Loading branch information
gitfool authored Sep 29, 2024
2 parents 4356e11 + 0027f25 commit a2e7787
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 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: 8.0.401
version: 8.0.402

- bash: dotnet tool restore && dotnet cake --verbosity=verbose
displayName: Cake build
4 changes: 2 additions & 2 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@v4.1.7
uses: actions/checkout@v4.2.0
with:
fetch-depth: 0
filter: tree:0
Expand All @@ -32,7 +32,7 @@ jobs:
uses: actions/[email protected]
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 8.0.401
dotnet-version: 8.0.402

- 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 8.0.401
- curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 8.0.402
- 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:8.0.401-jammy
FROM mcr.microsoft.com/dotnet/sdk:8.0.402-jammy

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

Expand Down Expand Up @@ -46,7 +46,7 @@ ENV Cake_Settings_EnableScriptCache=true \
RUN <<EOF
set -ex
[ "$TARGETARCH" = "amd64" ] && arch="x86_64" || arch="aarch64"
version=27.2.1
version=27.3.1
curl -fsSL https://download.docker.com/linux/static/stable/$arch/docker-$version.tgz -o docker.tgz
tar -xzf docker.tgz --directory /usr/local/bin --no-same-owner --strip=1 docker/docker
rm -f docker.tgz
Expand All @@ -71,7 +71,7 @@ EOF
RUN <<EOF
set -ex
[ "$TARGETARCH" = "amd64" ] && arch="x86_64" || arch="aarch64"
version=2.29.4
version=2.29.7
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 a2e7787

Please sign in to comment.