Skip to content

Commit

Permalink
github: change the ubuntu versions to 24.04
Browse files Browse the repository at this point in the history
We have different versions of ubuntu being used across the github
workflows. Change to 24.04 version throughout. Github workflows is
changing the `latest` tag to 24.04 by 2025-01-17.

Signed-off-by: Raghavendra Talur <[email protected]>
  • Loading branch information
raghavendra-talur committed Dec 9, 2024
1 parent 969fa6e commit cde3cfa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:

jobs:
dependency-review:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v4
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ramen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ defaults:
jobs:
lint:
name: Linters
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout source
uses: actions/checkout@v4
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
golangci:
name: Golangci Lint
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
matrix:
directory: [., api, e2e]
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:

unit-test:
name: Unit tests
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout source
uses: actions/checkout@v4
Expand All @@ -113,7 +113,7 @@ jobs:

build-image:
name: Build image
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout source
uses: actions/checkout@v4
Expand All @@ -139,7 +139,7 @@ jobs:
deploy-check:
name: Check artifacts and operator deployment
needs: [build-image]
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
(github.ref == 'refs/heads/main' ||
startsWith(github.ref, 'refs/heads/release-') ||
startsWith(github.ref, 'refs/tags/v'))
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Download image artifact
uses: actions/download-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tools.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
os:
- ubuntu-22.04
- ubuntu-24.04
python-version:
- "3.10"
- "3.11"
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
strategy:
matrix:
os:
- ubuntu-22.04
- ubuntu-24.04
python-version:
- "3.10"
- "3.11"
Expand Down

0 comments on commit cde3cfa

Please sign in to comment.