From 5db2a7a81fadeb604afbc39f4f3f7ae851080664 Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti <13schishti@gmail.com> Date: Wed, 11 Mar 2026 23:02:50 +0000 Subject: [PATCH] Upgrade GitHub Actions for Node 24 compatibility Signed-off-by: Salman Muin Kayser Chishti <13schishti@gmail.com> --- .github/workflows/integration_test.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml index f46dcd00..bfdb207f 100644 --- a/.github/workflows/integration_test.yml +++ b/.github/workflows/integration_test.yml @@ -252,7 +252,7 @@ jobs: python -m pytest tests/ -m "integration" -v --junitxml=junit/integration-test-results.xml - name: Upload integration test results - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: always() with: name: integration-test-results diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 75d21a07..a6dad170 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -53,7 +53,7 @@ jobs: # Only upload coverage report for Python 3.10 - name: Upload coverage report if: matrix.python-version == '3.10' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: coverage-report path: coverage.xml