File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed
docs/tutorials/jenkins/parallel-robot-pipeline Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 7
7
name : Build
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - uses : actions/checkout@v2
10
+ - uses : actions/checkout@v4
11
11
with :
12
12
fetch-depth : 0
13
13
- uses : actions/setup-python@v2
Original file line number Diff line number Diff line change 9
9
name : Pages
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v2
12
+ - uses : actions/checkout@v4
13
13
with :
14
14
fetch-depth : 0
15
15
- uses : actions/setup-python@v2
Original file line number Diff line number Diff line change 19
19
runs-on : ubuntu-latest
20
20
steps :
21
21
- name : Checkout
22
- uses : actions/checkout@v3
22
+ uses : actions/checkout@v4
23
23
- name : Build container image
24
24
working-directory : docs/tutorials/jenkins/parallel-robot-pipeline/
25
25
run : |
31
31
done
32
32
- name : Store logs
33
33
if : always()
34
- uses : actions/upload-artifact@v3
34
+ uses : actions/upload-artifact@v4
35
35
with :
36
36
name : raw-logs
37
37
path : robot_output
63
63
with :
64
64
python-version : ' 3.10'
65
65
- name : Download logs
66
- uses : actions/download-artifact@v3
66
+ uses : actions/download-artifact@v4
67
67
with :
68
68
path : work/
69
69
- name : Install robot framework
74
74
mkdir rebot_output
75
75
rebot -d rebot_output -o output.xml -N "${{ github.workflow }}" --nostatusrc */*.xml
76
76
- name : Store processed logs
77
- uses : actions/upload-artifact@v3
77
+ uses : actions/upload-artifact@v4
78
78
with :
79
79
name : combined-logs
80
80
path : work/rebot_output
Original file line number Diff line number Diff line change 1
- FROM mcr.microsoft.com/playwright:v1.48.0 -noble AS base
1
+ FROM mcr.microsoft.com/playwright:v1.51.1 -noble AS base
2
2
3
3
# Disable interactive configuration
4
4
ENV DEBIAN_FRONTEND='noninteractive'
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
- robot " $@ " ./suites
2
+ exec robot " $@ " ./suites
You can’t perform that action at this time.
0 commit comments