Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v2
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/parallel-robot-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build container image
working-directory: docs/tutorials/jenkins/parallel-robot-pipeline/
run: |
Expand All @@ -31,7 +31,7 @@ jobs:
done
- name: Store logs
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: raw-logs
path: robot_output
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
with:
python-version: '3.10'
- name: Download logs
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: work/
- name: Install robot framework
Expand All @@ -74,7 +74,7 @@ jobs:
mkdir rebot_output
rebot -d rebot_output -o output.xml -N "${{ github.workflow }}" --nostatusrc */*.xml
- name: Store processed logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: combined-logs
path: work/rebot_output
2 changes: 1 addition & 1 deletion docs/tutorials/jenkins/parallel-robot-pipeline/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/playwright:v1.48.0-noble AS base
FROM mcr.microsoft.com/playwright:v1.51.1-noble AS base

# Disable interactive configuration
ENV DEBIAN_FRONTEND='noninteractive'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
robot "$@" ./suites
exec robot "$@" ./suites