From fef79286c6131764239b6504f06e67ad18add221 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 20:04:21 +0000 Subject: [PATCH 1/5] Bump actions/download-artifact from 3 to 4 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/phpunits.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/phpunits.yaml b/.github/workflows/phpunits.yaml index f51f01d..91f01c2 100644 --- a/.github/workflows/phpunits.yaml +++ b/.github/workflows/phpunits.yaml @@ -147,7 +147,7 @@ jobs: steps: - name: Download junit id: artifacts-download - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: junit From 4d16a5e73b33929628a2e3ecea1af353df2dd06f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 20:04:25 +0000 Subject: [PATCH 2/5] Bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/phpunits.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/phpunits.yaml b/.github/workflows/phpunits.yaml index f51f01d..9647d0f 100644 --- a/.github/workflows/phpunits.yaml +++ b/.github/workflows/phpunits.yaml @@ -133,7 +133,7 @@ jobs: - name: Artifact upload id: unit-upload - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: junit path: build/junit-${{matrix.wallet-versions}}-${{ matrix.php-versions }}-${{ matrix.caches }}-${{ matrix.databases }}.xml From 76a43b51b386425fecc3cd541d3760a9693afdfc Mon Sep 17 00:00:00 2001 From: Maxim Babichev Date: Tue, 19 Dec 2023 10:00:43 +0300 Subject: [PATCH 3/5] fix --- .github/workflows/phpunits.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/phpunits.yaml b/.github/workflows/phpunits.yaml index e48e43f..4bf45ac 100644 --- a/.github/workflows/phpunits.yaml +++ b/.github/workflows/phpunits.yaml @@ -135,7 +135,7 @@ jobs: id: unit-upload uses: actions/upload-artifact@v4 with: - name: junit + name: junit-${{ matrix.runs-on }} path: build/junit-${{matrix.wallet-versions}}-${{ matrix.php-versions }}-${{ matrix.caches }}-${{ matrix.databases }}.xml artifacts: @@ -150,6 +150,8 @@ jobs: uses: actions/download-artifact@v4 with: name: junit + pattern: junit-* + merge-multiple: true - uses: actions/setup-go@v5 id: artifacts-golang From 95e29fe05754630834a80e96a6805e1a46b91cc8 Mon Sep 17 00:00:00 2001 From: Maxim Babichev Date: Tue, 19 Dec 2023 10:05:53 +0300 Subject: [PATCH 4/5] fix --- .github/workflows/phpunits.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/phpunits.yaml b/.github/workflows/phpunits.yaml index 4bf45ac..52dc322 100644 --- a/.github/workflows/phpunits.yaml +++ b/.github/workflows/phpunits.yaml @@ -135,7 +135,7 @@ jobs: id: unit-upload uses: actions/upload-artifact@v4 with: - name: junit-${{ matrix.runs-on }} + name: junit-${{matrix.wallet-versions}}${{ matrix.php-versions }}${{ matrix.caches }}${{ matrix.databases }} path: build/junit-${{matrix.wallet-versions}}-${{ matrix.php-versions }}-${{ matrix.caches }}-${{ matrix.databases }}.xml artifacts: From d1bbdf93f427ab3db7811970c8e70515d801dcc9 Mon Sep 17 00:00:00 2001 From: Maxim Babichev Date: Wed, 20 Dec 2023 19:23:16 +0300 Subject: [PATCH 5/5] fix --- .github/workflows/phpunits.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/phpunits.yaml b/.github/workflows/phpunits.yaml index 52dc322..e94105a 100644 --- a/.github/workflows/phpunits.yaml +++ b/.github/workflows/phpunits.yaml @@ -149,7 +149,6 @@ jobs: id: artifacts-download uses: actions/download-artifact@v4 with: - name: junit pattern: junit-* merge-multiple: true