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

Fix CI/CD ubuntu versions to 22.04 #113

Merged
merged 3 commits into from
Dec 15, 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
2 changes: 1 addition & 1 deletion .github/workflows/cd_pre_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ jobs:

build_ui:
name: Build UI Library
needs: [set_version]
runs-on: ubuntu-22.04
needs: [set_version]
steps:
- name: Checkout the repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ concurrency:

jobs:
bump_version:
runs-on: "ubuntu-20.04"
name: Build UI
runs-on: "ubuntu-22.04"
outputs:
version_branch: ${{ steps.get-version-details.outputs.major_version}}.x
release_version: ${{ steps.get-clean-version.outputs.version }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci_labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ on:

jobs:
labeler:
runs-on: ubuntu-latest
name: Update Labels
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
check_pr_label:
name: Check PR Label
if: github.event.pull_request.state == 'open'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Check PR contains at least one valid label
uses: jesusvasquez333/[email protected]
Expand Down
Loading