From a9c07de849e265af9f65b5675df2913831968efc Mon Sep 17 00:00:00 2001 From: Roland Sherwin Date: Wed, 19 Nov 2025 10:15:26 +0530 Subject: [PATCH 1/2] fix: artifact upload conflict when cleanup runs multiple times --- cleanup-autonomi-network/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cleanup-autonomi-network/action.yml b/cleanup-autonomi-network/action.yml index 71d2a4f..b9a7408 100644 --- a/cleanup-autonomi-network/action.yml +++ b/cleanup-autonomi-network/action.yml @@ -187,7 +187,7 @@ runs: if: inputs.upload-logs == 'true' uses: actions/upload-artifact@v4 with: - name: autonomi-network-logs-${{ github.run_id }} + name: autonomi-network-logs-${{ github.run_id }}-${{ github.job }}-${{ github.run_attempt }} path: network-logs/ retention-days: 7 From 674514ca366b19d9fb13afa96d360fd244eb3abe Mon Sep 17 00:00:00 2001 From: Roland Sherwin Date: Wed, 19 Nov 2025 10:19:28 +0530 Subject: [PATCH 2/2] feat: use the official branch inside CI --- .github/workflows/test-actions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-actions.yml b/.github/workflows/test-actions.yml index 5237f1f..72ccf37 100644 --- a/.github/workflows/test-actions.yml +++ b/.github/workflows/test-actions.yml @@ -18,7 +18,7 @@ jobs: - name: Start Autonomi Network id: start-network - uses: grumbach/github_actions/spawn-autonomi-network@v1 + uses: maidsafe/github_actions/spawn-autonomi-network@v1 with: autonomi-version: 'stable-2025.7.1.3' node-count: '25' @@ -112,7 +112,7 @@ jobs: - name: Cleanup Autonomi Network if: always() - uses: grumbach/github_actions/cleanup-autonomi-network@v1 + uses: maidsafe/github_actions/cleanup-autonomi-network@v1 with: upload-logs: 'true' keep-directories: 'false' \ No newline at end of file