From 45481460e0c7aac38633a1ae7a886135fff61747 Mon Sep 17 00:00:00 2001 From: "Janus C. H. Knudsen" Date: Sat, 31 Jan 2026 09:22:17 +0100 Subject: [PATCH] Simplifies CI workflow runner configuration Updates workflow to use dotnet10-runner directly as the runs-on environment Removes redundant container specification --- .forgejo/workflows/cicd.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.forgejo/workflows/cicd.yml b/.forgejo/workflows/cicd.yml index dd60413..589d457 100644 --- a/.forgejo/workflows/cicd.yml +++ b/.forgejo/workflows/cicd.yml @@ -7,8 +7,7 @@ on: jobs: build_test_deploy_test: - runs-on: ubuntu-latest - container: dotnet10-runner + runs-on: dotnet10-runner steps: - uses: actions/checkout@v4