Skip to content

Commit

Permalink
[SW-1712] Pin ubuntu version in workflows (#137)
Browse files Browse the repository at this point in the history
## 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
baxelrod-bdai authored Jan 8, 2025
1 parent ef5ee62 commit 6d3c8f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maintenance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
jobs:
clean-ghcr:
name: Prune old images from Github Container Registry
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Delete old pull request images
uses: snok/container-retention-policy@v2
Expand Down

0 comments on commit 6d3c8f3

Please sign in to comment.