From 9a4c329b615c5bbffff7d9a355fbff6a6b5516f0 Mon Sep 17 00:00:00 2001 From: Vijay Janapa Reddi Date: Sun, 19 Oct 2025 12:49:23 -0400 Subject: [PATCH] fix: Update GitHub Actions to use v4 of upload-artifact and cache - Upgrade actions/upload-artifact from v3 to v4 - Upgrade actions/cache from v3 to v4 - Resolves deprecation warnings causing workflow failures --- .github/workflows/test-notebooks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-notebooks.yml b/.github/workflows/test-notebooks.yml index 8c400ab3..5cb0dc4a 100644 --- a/.github/workflows/test-notebooks.yml +++ b/.github/workflows/test-notebooks.yml @@ -32,7 +32,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Cache pip dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} @@ -118,7 +118,7 @@ jobs: [ "$notebook_count" -gt 0 ] && echo "✓ Batch conversion successful" - name: Archive generated notebooks - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: always() with: name: generated-notebooks-python-${{ matrix.python-version }}