From c9ea974c6fa9ce74781c17a269d88b0663e7b1b8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 19:43:16 +0000 Subject: [PATCH] chore(deps): update actions/upload-artifact action to v4 --- .github/workflows/build.yaml | 2 +- .github/workflows/publish.yaml | 2 +- .github/workflows/test.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d08007955..2434cc410 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -31,7 +31,7 @@ jobs: run: python build.py --version ${{ matrix.py_version }} - name: Publish Build Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: retention-days: 14 name: ${{ matrix.py_version }}-build-artifact diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 0721ae579..d45d9df7d 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -35,7 +35,7 @@ jobs: run: python build.py --version ${{ matrix.py_version }} - name: Publish Build Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: retention-days: 14 name: ${{ matrix.py_version }}-build-artifact diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 1c93d06ca..2c2ce0717 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -70,7 +70,7 @@ jobs: if: ${{ matrix.py_version == '3.11' }} - name: Publish Test Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: retention-days: 14 name: ${{ matrix.py_version }}-test-results