From 5763ea63e7061718f6eee8cf8cb59c0ccb6bec1e Mon Sep 17 00:00:00 2001 From: Hang Cui Date: Fri, 17 Oct 2025 14:38:21 -0700 Subject: [PATCH] Update repo --- .gitea/workflows/006_passing_files.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/006_passing_files.yaml b/.gitea/workflows/006_passing_files.yaml index d6d34a9..e833c6a 100644 --- a/.gitea/workflows/006_passing_files.yaml +++ b/.gitea/workflows/006_passing_files.yaml @@ -24,17 +24,18 @@ jobs: ls -la ${{ github.workspace }}/backend - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: coverage - path: ${{ github.workspace }}/backend/.coverage + path: backend/.coverage # Use workspace-relative path + if-no-files-found: error load-file-example: runs-on: ubuntu-22.04 needs: [unit-tests] steps: - name: Download artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: coverage path: ${{ github.workspace }} # Move the coverage to ${{ github.workspace }}