From d597bd2ea44ac607ed1338ba371ea69cb5049457 Mon Sep 17 00:00:00 2001 From: stidsborg Date: Sun, 26 Apr 2026 12:04:21 +0200 Subject: [PATCH] Bump GitHub Actions in dotnet.yml actions/checkout v4 -> v6 and actions/setup-dotnet v1 -> v5. Drop the stale inline comment that referenced the 3.1 channel. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/dotnet.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 7062f3e..ce754a5 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -12,12 +12,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: submodules: 'true' - - uses: actions/setup-dotnet@v1 + - uses: actions/setup-dotnet@v5 with: - dotnet-version: '10.0.x' # SDK Version to use; x will use the latest version of the 3.1 channel + dotnet-version: '10.0.x' - name: Start containers run: docker compose -f "./docker-compose.yml" up -d --build - name: Build