From 64834c729b8e117c1f9a471d9e1e51f32b69a121 Mon Sep 17 00:00:00 2001 From: Matthew Barnett Date: Wed, 11 Sep 2024 19:36:34 +0100 Subject: [PATCH] Reverted to actions/download-artifact@v3 and actions/upload-artifact@v3 in main.yml because GitHub Actions failed when using them. --- .github/workflows/main.yml | 10 +++++----- changelog.txt | 4 ++++ 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7364062..172fdd9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -59,7 +59,7 @@ jobs: python -m cibuildwheel --output-dir wheelhouse - name: Upload wheels - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: regex-files path: wheelhouse/*.whl @@ -111,13 +111,13 @@ jobs: python -m cibuildwheel --output-dir wheelhouse - name: Upload source distribution - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: regex-files path: dist/*.tar.gz - name: Upload manylinux1_x86_64 wheels - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: regex-files path: wheelhouse/*.whl @@ -153,7 +153,7 @@ jobs: python -m cibuildwheel --output-dir wheelhouse - name: Upload ${{ matrix.arch }} wheels - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: regex-files path: wheelhouse/*.whl @@ -165,7 +165,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v3 with: name: regex-files path: dist diff --git a/changelog.txt b/changelog.txt index ba2ca26..05e17f4 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,7 @@ +Version: 2024.9.14 + + Reverted to actions/download-artifact@v3 and actions/upload-artifact@v3 in main.yml because GitHub Actions failed when using them. + Version: 2024.9.13 Updated to actions/upload-artifact@v4 in main.yml.