Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dependencies #125

Merged
merged 1 commit into from
Jul 22, 2024
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: 8.0.302
version: 8.0.303

- 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
@@ -1,4 +1,4 @@
name: ci

Check failure on line 1 in .github/workflows/ci.yaml

View workflow job for this annotation

GitHub Actions / Build failed

.github/workflows/ci.yaml#L1

This run timed out after more than 35 days.
on:
push:
branches: [ main ]
Expand Down Expand Up @@ -29,10 +29,10 @@
show-progress: false

- name: Install dotnet
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 8.0.302
dotnet-version: 8.0.303

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

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

Expand Down Expand Up @@ -60,7 +60,7 @@ EOF
RUN <<EOF
set -ex
[ "$TARGETARCH" = "amd64" ] && arch="amd64" || arch="arm64"
version=0.15.1
version=0.16.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 @@ -71,7 +71,7 @@ EOF
RUN <<EOF
set -ex
[ "$TARGETARCH" = "amd64" ] && arch="x86_64" || arch="aarch64"
version=2.28.1
version=2.29.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