Skip to content

Commit ed19850

Browse files
authored
Use exec when running robot command (#35)
1 parent 6646bb9 commit ed19850

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Build
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111
with:
1212
fetch-depth: 0
1313
- uses: actions/setup-python@v2

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Pages
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
with:
1414
fetch-depth: 0
1515
- uses: actions/setup-python@v2

.github/workflows/parallel-robot-pipeline.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
- name: Build container image
2424
working-directory: docs/tutorials/jenkins/parallel-robot-pipeline/
2525
run: |
@@ -31,7 +31,7 @@ jobs:
3131
done
3232
- name: Store logs
3333
if: always()
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: raw-logs
3737
path: robot_output
@@ -63,7 +63,7 @@ jobs:
6363
with:
6464
python-version: '3.10'
6565
- name: Download logs
66-
uses: actions/download-artifact@v3
66+
uses: actions/download-artifact@v4
6767
with:
6868
path: work/
6969
- name: Install robot framework
@@ -74,7 +74,7 @@ jobs:
7474
mkdir rebot_output
7575
rebot -d rebot_output -o output.xml -N "${{ github.workflow }}" --nostatusrc */*.xml
7676
- name: Store processed logs
77-
uses: actions/upload-artifact@v3
77+
uses: actions/upload-artifact@v4
7878
with:
7979
name: combined-logs
8080
path: work/rebot_output

docs/tutorials/jenkins/parallel-robot-pipeline/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/playwright:v1.48.0-noble AS base
1+
FROM mcr.microsoft.com/playwright:v1.51.1-noble AS base
22

33
# Disable interactive configuration
44
ENV DEBIAN_FRONTEND='noninteractive'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
robot "$@" ./suites
2+
exec robot "$@" ./suites

0 commit comments

Comments
 (0)