From d85a6a096c0f5e4ef39fdebc9da79a6cb98c031b Mon Sep 17 00:00:00 2001 From: SULIMAN NAZAL ALSHAMMARI Date: Wed, 10 Dec 2025 21:29:10 +0300 Subject: [PATCH] Update upload-artifact action to version 4 Fixes deprecated actions/upload-artifact@v3 that was causing CI/CD pipeline build failures. Updated to v4 as per GitHub's deprecation notice. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 959ef4b..649c58a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: run: | tar -czf gratech-ai-launch.tar.gz scripts/ docs/ README.md - name: Upload Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: gratech-package path: gratech-ai-launch.tar.gz