Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin robot test workflows to ubuntu-22.04 #118

Merged
merged 1 commit into from
Feb 21, 2025
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/robot-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
prepare-sdk:
name: Prepare SDK for Robot Testing
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
# Names of every Test Case defined
test_cases: ${{ steps.get_tests.outputs.test_cases }}
Expand All @@ -39,7 +39,7 @@ jobs:
echo "test_cases=$(./robot_tests/tools/extract_cases_names.py ./robot_tests/images.robot)" >> $GITHUB_OUTPUT

Test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: prepare-sdk
strategy:
fail-fast: false
Expand Down
Loading