From 81f2fadc1675a4c81fa6c17e86ae40fdf14e12d6 Mon Sep 17 00:00:00 2001 From: aidanbrzezinski Date: Tue, 17 Feb 2026 20:30:55 -0500 Subject: [PATCH] changed upload-artifact from @v4 to @v3 --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0c0b10f..dfa51bd 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -244,21 +244,21 @@ jobs: - name: Store log if: ${{ always() }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: log_file path: ${{ env.kibot_log }} - name: Store notes log if: ${{ always() && env.kibot_variant != 'DRAFT' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: log_file_notes path: kibot_run_notes.log - name: Store README log if: ${{ always() && env.kibot_variant == 'DRAFT' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: log_file_readme path: kibot_run_readme.log