From dd3060a80bad2eca770873c4158fbdf8121e9311 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 10 Jun 2024 03:56:59 +0000 Subject: [PATCH 1/2] 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 df3cccfb..37b89a74 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -28,7 +28,7 @@ jobs: run: python build.py - name: Publish Build Artifact - uses: actions/upload-artifact@v3.1.3 + uses: actions/upload-artifact@v4.3.3 with: retention-days: 14 name: py3-build-artifact diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index b919f266..4c0e1b27 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -31,7 +31,7 @@ jobs: run: python build.py - name: Publish Build Artifact - uses: actions/upload-artifact@v3.1.3 + uses: actions/upload-artifact@v4.3.3 with: retention-days: 14 name: py3-build-artifact diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 1d2c7714..94d07e61 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -56,7 +56,7 @@ jobs: if: ${{ matrix.py_version == '3.11' }} - name: Publish Test Artifact - uses: actions/upload-artifact@v3.1.3 + uses: actions/upload-artifact@v4.3.3 with: retention-days: 14 name: ${{ matrix.py_version }}-test-results From a5161e8cdcce3a957756b1958b25a1503fd90f88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Odd=20Str=C3=A5b=C3=B8?= Date: Mon, 10 Jun 2024 06:17:01 +0200 Subject: [PATCH 2/2] Add os to test artifact name --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 94d07e61..c8044309 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -59,7 +59,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: retention-days: 14 - name: ${{ matrix.py_version }}-test-results + name: ${{ matrix.py_version }}-${{ matrix.os }}-test-results path: | flake8.output test.xml