-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SW-1712] Pin ubuntu version in workflows (#137)
## Change Overview This is simply a find/replace of `ubuntu-latest` -> `ubuntu-22.04`. Because `ubuntu-latest` will become 24.04 soon. We should pin to 22.04 which matches our development environment. ## Testing Done None. This PR is the test. (Assuming this repo has CI)
- Loading branch information
1 parent
ef5ee62
commit 6d3c8f3
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ concurrency: | |
jobs: | ||
lint: | ||
name: Lint ros_utilities packages | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
@@ -32,7 +32,7 @@ jobs: | |
uses: pre-commit/[email protected] | ||
prepare_container: | ||
name: Prepare Humble container for tests | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
needs: lint | ||
permissions: | ||
contents: read | ||
|
@@ -74,7 +74,7 @@ jobs: | |
cache-to: type=gha,mode=max | ||
build_and_test: | ||
name: Build and test ros_utilities packages | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
needs: prepare_container | ||
container: | ||
image: ${{ needs.prepare_container.outputs.image }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters