Skip to content

Commit

Permalink
[SW-1712] Pin ubuntu version in workflows (#60)
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 7, 2025
1 parent 3c3f64f commit 584ed56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pre_commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
pre-commit:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:

jobs:
vlfm_main_build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
defaults:
run:
shell: bash
Expand Down

0 comments on commit 584ed56

Please sign in to comment.