Skip to content

Commit 6fba2c4

Browse files
committed
Merge branch 'release/2.8'
2 parents a141323 + 63bb4b7 commit 6fba2c4

1 file changed

Lines changed: 29 additions & 29 deletions

File tree

.github/workflows/verify.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@ jobs:
99
mockup_build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313
with:
1414
repository: xored/q7.quality.mockups
15-
- uses: actions/setup-java@v4
15+
- uses: actions/setup-java@v5
1616
with:
1717
java-version: '17'
1818
distribution: 'temurin'
1919
cache: maven
20-
- uses: stCarolas/setup-maven@v5
20+
- uses: stCarolas/setup-maven@v5.1
2121
with:
2222
maven-version: 3.9.9
2323
- run: mvn clean verify
2424
- name: Archive update site
25-
uses: actions/upload-artifact@v4
25+
uses: actions/upload-artifact@v7
2626
with:
2727
if-no-files-found: error
2828
name: mockup_repository
@@ -34,8 +34,8 @@ jobs:
3434
env:
3535
DISPLAY: :1
3636
steps:
37-
- uses: actions/checkout@v4
38-
- uses: actions/cache@v4
37+
- uses: actions/checkout@v6
38+
- uses: actions/cache@v5
3939
with:
4040
key: m2repository
4141
path: |
@@ -46,7 +46,7 @@ jobs:
4646
run: ./build.sh -DforceContextQualifier=`date '+%Y%m%d%H%M'` -DbuildUrl=file://`pwd` --errors --batch-mode --no-transfer-progress
4747
- name: Archive results
4848
if: always()
49-
uses: actions/upload-artifact@v4
49+
uses: actions/upload-artifact@v7
5050
with:
5151
if-no-files-found: error
5252
name: build_results
@@ -57,32 +57,32 @@ jobs:
5757
**/target/work/**/*.ini
5858
**/*.hrpof
5959
- name: Archive update site
60-
uses: actions/upload-artifact@v4
60+
uses: actions/upload-artifact@v7
6161
with:
6262
if-no-files-found: error
6363
name: repository
6464
path: 'repository/rcptt/target/repository/**'
6565
- name: Publish Test Report
66-
uses: mikepenz/action-junit-report@v5
66+
uses: mikepenz/action-junit-report@v6
6767
if: always() # always run even if the previous step fails
6868
with:
6969
report_paths: '**/target/*-reports/*.xml'
7070
fail_on_failure: false
7171
annotate_only: true
7272
- name: Archive Runner
73-
uses: actions/upload-artifact@v4
73+
uses: actions/upload-artifact@v7
7474
with:
7575
if-no-files-found: error
7676
name: runner
7777
path: runner/product/target/products/org.eclipse.rcptt.runner.headless-linux.gtk.x86_64.zip
7878
- name: Archive Maven Plugin
79-
uses: actions/upload-artifact@v4
79+
uses: actions/upload-artifact@v7
8080
with:
8181
if-no-files-found: error
8282
name: maven-plugin
8383
path: /root/.m2/repository/org/eclipse/rcptt/rcptt-*/**
8484
- name: Archive IDE
85-
uses: actions/upload-artifact@v4
85+
uses: actions/upload-artifact@v7
8686
with:
8787
if-no-files-found: error
8888
name: ide
@@ -94,8 +94,8 @@ jobs:
9494
env:
9595
DISPLAY: :1
9696
steps:
97-
- uses: actions/checkout@v4
98-
- uses: actions/cache@v4
97+
- uses: actions/checkout@v6
98+
- uses: actions/cache@v5
9999
with:
100100
key: m2repository
101101
path: |
@@ -106,7 +106,7 @@ jobs:
106106
run: ./build.sh -PlatestPlatform -PforceContextQualifier -DforceContextQualifier=`date '+%Y%m%d%H%M'` -DbuildUrl=file://`pwd` --errors --batch-mode --no-transfer-progress
107107
- name: Archive results
108108
if: always()
109-
uses: actions/upload-artifact@v4
109+
uses: actions/upload-artifact@v7
110110
with:
111111
if-no-files-found: error
112112
name: test_latest_results
@@ -117,7 +117,7 @@ jobs:
117117
**/target/work/**/*.ini
118118
**/*.hrpof
119119
- name: Publish Test Report
120-
uses: mikepenz/action-junit-report@v5
120+
uses: mikepenz/action-junit-report@v6
121121
if: always() # always run even if the previous step fails
122122
with:
123123
report_paths: '**/target/*-reports/*.xml'
@@ -133,40 +133,40 @@ jobs:
133133
env:
134134
DISPLAY: :1
135135
steps:
136-
- uses: actions/checkout@v4
136+
- uses: actions/checkout@v6
137137
- name: VNC
138138
run: Xvnc $DISPLAY -PasswordFile /root/.vnc/passwd &
139139
- name: Download Runner
140-
uses: actions/download-artifact@v4
140+
uses: actions/download-artifact@v8
141141
with:
142142
name: runner
143143
- name: Download Maven Plugin
144-
uses: actions/download-artifact@v4
144+
uses: actions/download-artifact@v8
145145
with:
146146
name: maven-plugin
147147
path: /root/.m2/repository/org/eclipse/rcptt
148148
- name: Download IDE
149-
uses: actions/download-artifact@v4
149+
uses: actions/download-artifact@v8
150150
with:
151151
name: ide
152152
- name: Download Mockups
153-
uses: actions/download-artifact@v4
153+
uses: actions/download-artifact@v8
154154
with:
155155
name: mockup_repository
156156
path: mockup_repository
157157
- run: find . > list.txt
158158
- name: RCPTT Tests
159159
run: mvn clean verify --file rcpttTests -DexplicitRunner=`pwd`/org.eclipse.rcptt.runner.headless-linux.gtk.x86_64.zip -DrcpttPath=`pwd`/org.eclipse.rcptt.platform.product-linux.gtk.x86_64.zip -Dmockup_repository=file://`pwd`/mockup_repository --errors --batch-mode --no-transfer-progress
160160
- name: Publish Test Report
161-
uses: mikepenz/action-junit-report@v5
161+
uses: mikepenz/action-junit-report@v6
162162
if: always() # always run even if the previous step fails
163163
with:
164164
report_paths: '**/target/*-reports/*.xml'
165165
fail_on_failure: true
166166
annotate_only: true
167167
- name: Archive results
168168
if: always()
169-
uses: actions/upload-artifact@v4
169+
uses: actions/upload-artifact@v7
170170
with:
171171
if-no-files-found: error
172172
name: self_results
@@ -189,38 +189,38 @@ jobs:
189189
env:
190190
DISPLAY: :1
191191
steps:
192-
- uses: actions/checkout@v4
192+
- uses: actions/checkout@v6
193193
with:
194194
repository: xored/q7.quality.mockups
195-
- uses: actions/cache@v4
195+
- uses: actions/cache@v5
196196
with:
197197
key: mockups_maven
198198
path: |
199199
/root/.m2/repository
200200
- name: VNC
201201
run: Xvnc $DISPLAY -PasswordFile /root/.vnc/passwd &
202202
- name: Download Runner
203-
uses: actions/download-artifact@v4
203+
uses: actions/download-artifact@v8
204204
with:
205205
name: runner
206206
- name: Download Mockups
207-
uses: actions/download-artifact@v4
207+
uses: actions/download-artifact@v8
208208
with:
209209
name: mockup_repository
210210
path: repository/target/repository/
211211
- run: find . > list.txt
212212
- name: RCPTT Tests
213213
run: mvn clean verify --file rcpttTests -DexplicitRunner=`pwd`/org.eclipse.rcptt.runner.headless-linux.gtk.x86_64.zip -DmockupsRepository=file://`pwd`/repository/target/repository --errors --batch-mode --no-transfer-progress
214214
- name: Publish Test Report
215-
uses: mikepenz/action-junit-report@v5
215+
uses: mikepenz/action-junit-report@v6
216216
if: always() # always run even if the previous step fails
217217
with:
218218
report_paths: '**/target/*-reports/*.xml'
219219
fail_on_failure: false
220220
annotate_only: true
221221
- name: Archive results
222222
if: always()
223-
uses: actions/upload-artifact@v4
223+
uses: actions/upload-artifact@v7
224224
with:
225225
if-no-files-found: error
226226
name: mockup_results

0 commit comments

Comments
 (0)