Skip to content

Commit

Permalink
[CI] Downgrade runner image from ubuntu-latest to ubuntu-22.04 (#2714)
Browse files Browse the repository at this point in the history
  • Loading branch information
owenowenisme authored Jan 4, 2025
1 parent 542f246 commit 05e9279
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/consistency-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
# Check consistency between types.go and generated API.
ray-operator-verify-codegen:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
Expand All @@ -37,7 +37,7 @@ jobs:

# Check consistency between types.go and generated API reference.
ray-operator-verify-api-docs:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
Expand All @@ -61,7 +61,7 @@ jobs:
# 1. Check consistency between types.go and CRD YAML files.
# 2. Check consistency between kubebuilder markers and RBAC.
ray-operator-verify-crd-rbac:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
# and in helm-chart/kuberay-operator/crds
helm-chart-verify-crd:
needs: ray-operator-verify-crd-rbac
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
# and in helm-chart/kuberay-operator/templates
helm-chart-verify-rbac:
needs: ray-operator-verify-crd-rbac
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/helm-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
lint-test-helm-3-4:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout Code
uses: actions/checkout@v3
Expand All @@ -35,7 +35,7 @@ jobs:
run: ct lint --all --chart-dirs helm-chart/ --validate-maintainers=false

lint-test-helm-3-9:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout Code
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/image-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
env:
working-directory: ./apiserver
name: Release APIServer Docker Image
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:

- name: Set up Go
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
env:
working-directory: ./ray-operator
name: Release Operator Docker Images
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:

- name: Set up Go
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/test-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
lint:
name: Lint (pre-commit)
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Install golangci-lint
run: |
Expand All @@ -32,7 +32,7 @@ jobs:
env:
working-directory: ./apiserver
name: Build Apiserver and Docker Images
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Set up Go
uses: actions/setup-go@v3
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
env:
working-directory: ./experimental
name: Build security proxy Binaries and Docker Images
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:

- name: Set up Go
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
env:
working-directory: ./ray-operator
name: Build Operator Binaries and Docker Images
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:

- name: Set up Go
Expand Down Expand Up @@ -292,7 +292,7 @@ jobs:
env:
working-directory: ./kubectl-plugin
name: Build Ray Kubectl plugin
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Set up Go
uses: actions/setup-go@v3
Expand Down Expand Up @@ -324,7 +324,7 @@ jobs:
- build_operator
- build_apiserver
- lint
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
name: Compatibility Test - 2.7.0
steps:
- name: Check out code into the Go module directory
Expand All @@ -344,7 +344,7 @@ jobs:
- build_operator
- build_apiserver
- lint
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
name: Compatibility Test - 2.8.0
steps:
- name: Check out code into the Go module directory
Expand All @@ -364,7 +364,7 @@ jobs:
- build_operator
- build_apiserver
- lint
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
name: Compatibility Test - 2.9.0
steps:
- name: Check out code into the Go module directory
Expand All @@ -384,7 +384,7 @@ jobs:
- build_operator
- build_apiserver
- lint
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
name: Compatibility Test - Nightly
steps:
- name: Check out code into the Go module directory
Expand All @@ -400,7 +400,7 @@ jobs:
ray_version: nightly

python-client-test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
name: Python Client Test
steps:
- name: Set up Docker
Expand Down

0 comments on commit 05e9279

Please sign in to comment.