diff --git a/.github/workflows/tests-backward-compat.yml b/.github/workflows/tests-backward-compat.yml index 93f1ca084..94f859273 100644 --- a/.github/workflows/tests-backward-compat.yml +++ b/.github/workflows/tests-backward-compat.yml @@ -343,21 +343,21 @@ jobs: # because we want to see why a test failed. - name: Upload nginx Error Log to Artifact if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: nginx-error-log-${{ steps.test-group.outputs.value }}-${{ matrix.php-versions }}.log path: /var/log/nginx/error.log - name: Upload Test Results to Artifact if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: test-results-${{ steps.test-group.outputs.value }}-${{ matrix.php-versions }} path: ${{ env.PLUGIN_DIR }}/tests/_output/ - name: Upload Plugin Log File to Artifact if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: log-${{ steps.test-group.outputs.value }}-${{ matrix.php-versions }}.txt path: ${{ env.PLUGIN_DIR }}/log/log.txt \ No newline at end of file diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6cf311f85..4bae6117a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -365,21 +365,21 @@ jobs: # because we want to see why a test failed. - name: Upload nginx Error Log to Artifact if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: nginx-error-log-${{ steps.test-group.outputs.value }}-${{ matrix.php-versions }}.log path: /var/log/nginx/error.log - name: Upload Test Results to Artifact if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: test-results-${{ steps.test-group.outputs.value }}-${{ matrix.php-versions }} path: ${{ env.PLUGIN_DIR }}/tests/_output/ - name: Upload Plugin Log File to Artifact if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: log-${{ steps.test-group.outputs.value }}-${{ matrix.php-versions }}.txt path: ${{ env.PLUGIN_DIR }}/log/log.txt