Skip to content

Commit

Permalink
Fix CI/CD ubuntu versions to 22.04 (#113)
Browse files Browse the repository at this point in the history
* Fix CI/CD ubuntu versions to 22.04

* Fix the labeler job name

* Improve the ordering
  • Loading branch information
cvetty authored Dec 15, 2024
1 parent abf9a5e commit 867aeb0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
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/verify-pr-label-action@v1.4.0
Expand Down

0 comments on commit 867aeb0

Please sign in to comment.