From 3593ae9b39d431a825f00b80f587389a058407f9 Mon Sep 17 00:00:00 2001 From: Daniel Dale Date: Wed, 9 Oct 2024 07:38:33 -0700 Subject: [PATCH] use newer version of github action upload-artifact --- .github/workflows/ci_test-full.yml | 2 +- .github/workflows/release-pypi.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_test-full.yml b/.github/workflows/ci_test-full.yml index bdd49bb..9e24162 100644 --- a/.github/workflows/ci_test-full.yml +++ b/.github/workflows/ci_test-full.yml @@ -133,7 +133,7 @@ jobs: # python -m pytest fts_examples -v --durations=3 - name: Upload pytest results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: pytest-results-${{ runner.os }}-${{ matrix.python-version }}-${{ matrix.requires }}-${{ matrix.release }} path: junit/test-results-${{ runner.os }}-${{ matrix.python-version }}-${{ matrix.requires }}-${{ matrix.release }}.xml diff --git a/.github/workflows/release-pypi.yml b/.github/workflows/release-pypi.yml index ef50391..92109ef 100644 --- a/.github/workflows/release-pypi.yml +++ b/.github/workflows/release-pypi.yml @@ -39,7 +39,7 @@ jobs: python -m build ls -lh dist/ - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: pypi-packages-${{ github.sha }} path: dist