Skip to content

Commit 677e57c

Browse files
authored
Merge pull request #39 from OXID-eSales/fix_artifact_handling
Revert artifact handling as it breaks our current workflows
2 parents b659008 + 08ffab1 commit 677e57c

File tree

14 files changed

+22
-22
lines changed

14 files changed

+22
-22
lines changed

.github/workflows/call-test_matrix.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
7373
- name: 'Upload generated test plan'
7474
if: always()
75-
uses: actions/upload-artifact@v4
75+
uses: actions/upload-artifact@v3
7676
with:
7777
name: 'testplan'
7878
path: |

.github/workflows/call-universal_test_workflow.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
104104
- name: 'Upload generated test plan'
105105
if: always()
106-
uses: actions/upload-artifact@v4
106+
uses: actions/upload-artifact@v3
107107
with:
108108
name: 'testplan'
109109
path: |
@@ -1420,7 +1420,7 @@ jobs:
14201420
SLACK_WEBHOOK: "${{ secrets.SLACK_WEBHOOK_URL }}"
14211421
steps:
14221422
- name: 'Download job results'
1423-
uses: actions/download-artifact@v4
1423+
uses: actions/download-artifact@v3
14241424
with:
14251425
name: testplan
14261426

.github/workflows/push-validate_workflows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
SLACK_WEBHOOK: "${{ secrets.SLACK_WEBHOOK_URL }}"
109109
steps:
110110
- name: 'Download job results'
111-
uses: actions/download-artifact@v4
111+
uses: actions/download-artifact@v3
112112
with:
113113
name: testplan
114114

append_report/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ runs:
9595
- name: Upload Artifacts
9696
# yamllint enable rule:line-length
9797
if: always()
98-
uses: actions/upload-artifact@v4
98+
uses: actions/upload-artifact@v3
9999
with:
100100
name: testplan
101101
path: |

begin_report/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ runs:
4141
4242
- name: Upload Artifacts
4343
if: always()
44-
uses: actions/upload-artifact@v4
44+
uses: actions/upload-artifact@v3
4545
with:
4646
name: testplan
4747
path: |

codeception/action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ runs:
117117
118118
- name: Upload Codeception Log
119119
if: always()
120-
uses: actions/upload-artifact@v4
120+
uses: actions/upload-artifact@v3
121121
with:
122122
name: ${{ inputs.logfile_artifact }}
123123
path: ${{ inputs.logfile }}
@@ -126,7 +126,7 @@ runs:
126126

127127
- name: Upload Codeception Artifacts
128128
if: always()
129-
uses: actions/upload-artifact@v4
129+
uses: actions/upload-artifact@v3
130130
with:
131131
name: ${{ inputs.output_artifact }}
132132
path: ${{ inputs.output_files }}
@@ -135,7 +135,7 @@ runs:
135135

136136
- name: Upload Coverage Report
137137
if: ${{ always() && inputs.coverage_path != '' }}
138-
uses: actions/upload-artifact@v4
138+
uses: actions/upload-artifact@v3
139139
with:
140140
name: ${{ inputs.coverage_artifact }}
141141
path: ${{ inputs.coverage_path }}

generate_report/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
using: "composite"
2323
steps:
2424
- name: Download Artifact
25-
uses: actions/download-artifact@v4
25+
uses: actions/download-artifact@v3
2626
with:
2727
name: testplan
2828

@@ -152,7 +152,7 @@ runs:
152152
# yamllint enable rule:line-length
153153

154154
if: always()
155-
uses: actions/upload-artifact@v4
155+
uses: actions/upload-artifact@v3
156156
with:
157157
name: testplan
158158
path: |

install_module/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ runs:
205205
206206
- name: Upload configuration artifacts
207207
if: always()
208-
uses: actions/upload-artifact@v4
208+
uses: actions/upload-artifact@v3
209209
with:
210210
name: ${{ inputs.output_artifact }}
211211
path: ${{ inputs.output_files }}

install_shop/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ runs:
147147
148148
- name: Upload configuration artifacts
149149
if: always()
150-
uses: actions/upload-artifact@v4
150+
uses: actions/upload-artifact@v3
151151
with:
152152
name: ${{ inputs.output_artifact }}
153153
path: ${{ inputs.output_files }}

phpcs/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ runs:
103103
104104
- name: Upload Log
105105
if: ${{ always() && steps.diff.outputs.skip == 'false' }}
106-
uses: actions/upload-artifact@v4
106+
uses: actions/upload-artifact@v3
107107
with:
108108
name: ${{ inputs.logfile_artifact }}
109109
path: |

phpunit/action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ runs:
8686
8787
- name: Upload Log
8888
if: always()
89-
uses: actions/upload-artifact@v4
89+
uses: actions/upload-artifact@v3
9090
with:
9191
name: ${{ inputs.logfile_artifact }}
9292
path: ${{ inputs.logfile }}
@@ -95,7 +95,7 @@ runs:
9595

9696
- name: Upload Artifacts
9797
if: always()
98-
uses: actions/upload-artifact@v4
98+
uses: actions/upload-artifact@v3
9999
with:
100100
name: ${{ inputs.output_artifact }}
101101
path: ${{ inputs.output_files }}
@@ -104,7 +104,7 @@ runs:
104104

105105
- name: Upload Coverage Report
106106
if: ${{ always() && inputs.coverage_path != '' }}
107-
uses: actions/upload-artifact@v4
107+
uses: actions/upload-artifact@v3
108108
with:
109109
name: ${{ inputs.coverage_artifact }}
110110
path: ${{ inputs.coverage_path }}

runtests/action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ runs:
105105
106106
- name: Upload Log
107107
if: always()
108-
uses: actions/upload-artifact@v4
108+
uses: actions/upload-artifact@v3
109109
with:
110110
name: ${{ inputs.logfile_artifact }}
111111
path: ${{ inputs.logfile }}
@@ -114,7 +114,7 @@ runs:
114114

115115
- name: Upload Artifacts
116116
if: always()
117-
uses: actions/upload-artifact@v4
117+
uses: actions/upload-artifact@v3
118118
with:
119119
name: ${{ inputs.output_artifact }}
120120
path: ${{ inputs.output_files }}
@@ -123,7 +123,7 @@ runs:
123123

124124
- name: Upload Coverage Report
125125
if: ${{ always() && inputs.coverage_path != '' }}
126-
uses: actions/upload-artifact@v4
126+
uses: actions/upload-artifact@v3
127127
with:
128128
name: ${{ inputs.coverage_artifact }}
129129
path: ${{ inputs.coverage_path }}

sonarcloud/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ runs:
6464
using: "composite"
6565
steps:
6666
- name: Download coverage artifacts
67-
uses: actions/download-artifact@v4
67+
uses: actions/download-artifact@v3
6868
with:
6969
name: ${{ inputs.coverage_artifact }}
7070
path: coverage-reports

styles/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ runs:
131131
132132
- name: Upload log artifact
133133
if: always()
134-
uses: actions/upload-artifact@v4
134+
uses: actions/upload-artifact@v3
135135
with:
136136
name: ${{ inputs.output_artifact }}
137137
path: ${{ inputs.output_files }}

0 commit comments

Comments
 (0)