Skip to content

Commit 9234d6c

Browse files
authored
Merge pull request #276 from gitfool/renovate/minor
2 parents 0200d61 + d987def commit 9234d6c

File tree

7 files changed

+382
-380
lines changed

7 files changed

+382
-380
lines changed

.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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,28 +19,28 @@ jobs:
1919
container: dockfool/cake-docker:latest
2020
steps:
2121
- name: Checkout source
22-
uses: actions/checkout@v4.2.2
22+
uses: actions/checkout@v4.3.0
2323
with:
2424
fetch-depth: 0
2525
filter: tree:0
2626
show-progress: false
2727

2828
- name: Cache packages
29-
uses: actions/cache@v4.2.3
29+
uses: actions/cache@v4.3.0
3030
with:
3131
path: ${{ env.NUGET_PACKAGES }}
3232
key: ${{ runner.os }}-nuget-${{ hashFiles('.config/dotnet-tools.json', '**/packages.lock.json') }}
3333
restore-keys: ${{ runner.os }}-nuget-
3434

3535
- name: Docker login
3636
if: github.event_name != 'pull_request'
37-
uses: docker/login-action@v3.4.0
37+
uses: docker/login-action@v3.6.0
3838
with:
3939
username: ${{ secrets.DOCKER_USERNAME }}
4040
password: ${{ secrets.DOCKER_TOKEN }}
4141

4242
- name: Setup buildx
43-
uses: docker/setup-buildx-action@v3.10.0
43+
uses: docker/setup-buildx-action@v3.11.1
4444

4545
- name: Export runtime
4646
uses: crazy-max/[email protected]
@@ -50,7 +50,7 @@ jobs:
5050

5151
- name: Tests report
5252
if: always()
53-
uses: mikepenz/action-junit-report@v5.5.1
53+
uses: mikepenz/action-junit-report@v5.6.2
5454
with:
5555
check_name: tests
5656
fail_on_failure: true

Cli/Cli.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@
3030
<PackageReference Include="Flurl" Version="4.0.0" />
3131
<PackageReference Include="Flurl.Http" Version="4.0.2" />
3232
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="6.0.0" />
33-
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.4" />
34-
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.4" />
33+
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.9" />
34+
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.9" />
3535
<PackageReference Include="NetEscapades.Configuration.Yaml" Version="3.1.0" />
36-
<PackageReference Include="Polly" Version="8.5.2" />
36+
<PackageReference Include="Polly" Version="8.6.4" />
3737
<PackageReference Include="Serilog" Version="4.2.0" />
3838
<PackageReference Include="Serilog.Enrichers.Thread" Version="4.0.0" />
3939
<PackageReference Include="Serilog.Extensions.Hosting" Version="9.0.0" />
4040
<PackageReference Include="Serilog.Settings.Configuration" Version="9.0.0" />
4141
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
42-
<PackageReference Include="Spectre.Console.Cli" Version="0.50.0" />
42+
<PackageReference Include="Spectre.Console.Cli" Version="0.51.1" />
4343
<PackageReference Include="System.Interactive" Version="6.0.1" />
4444
<PackageReference Include="System.Interactive.Async" Version="6.0.1" />
4545
</ItemGroup>

Cli/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1
2-
FROM mcr.microsoft.com/dotnet/runtime:9.0.4-noble
2+
FROM mcr.microsoft.com/dotnet/runtime:9.0.9-noble
33

44
LABEL org.opencontainers.image.source=https://github.com/gitfool/BoardGameGeek.Dungeon
55

0 commit comments

Comments
 (0)