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

[INFRA-1120] Bump GitHub Actions runner OS to 24.04 in all workflows #65

Merged
merged 1 commit into from
Dec 4, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/continous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
jobs:
train-model:
name: Train model
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Checkout git repository 🕝
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:

run_e2e_tests:
name: Run e2e tests
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [train-model]

steps:
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:

run_e2e_tests_with_assertions:
name: Run e2e tests with assertions
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [train-model]

steps:
Expand Down Expand Up @@ -355,7 +355,7 @@ jobs:

run_e2e_tests_with_stub_custom_actions:
name: Run e2e tests with stub custom actions
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [train-model]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/git-backup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:

jobs:
backup:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-e2e-tests-on-azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
jobs:
train-model-and-run-tests:
name: Train model
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Checkout git repository 🕝
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/secret-scan-trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: [pull_request]
jobs:
trivy:
name: Detecting hardcoded secrets
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
with:
Expand Down