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.300
version: 10.0.301

- bash: dotnet tool restore && dotnet cake --verbosity=verbose
displayName: Cake build
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
with:
fetch-depth: 0
filter: tree:0
show-progress: false

- name: Install dotnet
uses: actions/setup-dotnet@v5.2.0
uses: actions/setup-dotnet@v5.3.0
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 10.0.300
dotnet-version: 10.0.301

- name: Docker login
if: github.event_name != 'pull_request'
Expand All @@ -42,7 +42,7 @@ jobs:
password: ${{ secrets.DOCKER_TOKEN }}

- name: Setup qemu
uses: docker/setup-qemu-action@v4.0.0
uses: docker/setup-qemu-action@v4.1.0
with:
platforms: arm64

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.300
- curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 10.0.301
- export DOTNET_ROOT=$HOME/.dotnet && export PATH=$DOTNET_ROOT:$PATH
- dotnet tool restore && dotnet cake --verbosity=verbose
2 changes: 1 addition & 1 deletion 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.300-resolute
FROM mcr.microsoft.com/dotnet/sdk:10.0.301-resolute

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

Expand Down
Loading