From 732f167149b546e9dee4c18338849734de3f1250 Mon Sep 17 00:00:00 2001 From: Sean Date: Fri, 14 Nov 2025 16:16:24 -0500 Subject: [PATCH] Fix yaml script --- .gitea/workflows/arm64-ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/arm64-ci.yaml b/.gitea/workflows/arm64-ci.yaml index 99704f3..615c9bd 100644 --- a/.gitea/workflows/arm64-ci.yaml +++ b/.gitea/workflows/arm64-ci.yaml @@ -10,7 +10,7 @@ jobs: runs-on: arm64 # Use the ARM64 runner steps: - name: Checkout code - uses: actions/checkout@v4 # Action to checkout your repository + uses: actions/checkout@v3 # Action to checkout your repository. actions/checkout@v4 fails with syntax error # - name: Setup .NET SDK # uses: actions/setup-dotnet@v4 # Action to install a specific .NET SDK version @@ -24,4 +24,4 @@ jobs: run: dotnet build --configuration Debug --no-restore # Build the project in Debug configuration # - name: Run tests (optional) -# run: dotnet test --no-build # Run unit tests if available \ No newline at end of file +# run: dotnet test --no-build # Run unit tests if available