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 .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"cake.tool": {
"version": "5.0.0",
"version": "5.1.0",
"commands": [
"dotnet-cake"
]
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,28 +19,28 @@ jobs:
container: dockfool/cake-docker:latest
steps:
- name: Checkout source
uses: actions/checkout@v4.2.2
uses: actions/checkout@v4.3.0
with:
fetch-depth: 0
filter: tree:0
show-progress: false

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

- name: Docker login
if: github.event_name != 'pull_request'
uses: docker/login-action@v3.4.0
uses: docker/login-action@v3.6.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Setup buildx
uses: docker/setup-buildx-action@v3.10.0
uses: docker/setup-buildx-action@v3.11.1

- name: Export runtime
uses: crazy-max/[email protected]
Expand All @@ -50,7 +50,7 @@ jobs:

- name: Tests report
if: always()
uses: mikepenz/action-junit-report@v5.5.1
uses: mikepenz/action-junit-report@v5.6.2
with:
check_name: tests
fail_on_failure: true
Expand Down
8 changes: 4 additions & 4 deletions Cli/Cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@
<PackageReference Include="Flurl" Version="4.0.0" />
<PackageReference Include="Flurl.Http" Version="4.0.2" />
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.4" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.4" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.9" />
<PackageReference Include="NetEscapades.Configuration.Yaml" Version="3.1.0" />
<PackageReference Include="Polly" Version="8.5.2" />
<PackageReference Include="Polly" Version="8.6.4" />
<PackageReference Include="Serilog" Version="4.2.0" />
<PackageReference Include="Serilog.Enrichers.Thread" Version="4.0.0" />
<PackageReference Include="Serilog.Extensions.Hosting" Version="9.0.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="9.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="Spectre.Console.Cli" Version="0.50.0" />
<PackageReference Include="Spectre.Console.Cli" Version="0.51.1" />
<PackageReference Include="System.Interactive" Version="6.0.1" />
<PackageReference Include="System.Interactive.Async" Version="6.0.1" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM mcr.microsoft.com/dotnet/runtime:9.0.4-noble
FROM mcr.microsoft.com/dotnet/runtime:9.0.9-noble

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

Expand Down
Loading