Skip to content

Commit

Permalink
[SW-1712] Pin ubuntu version in workflows (#151)
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 c78ebfb commit 3b5fd5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
config:
- { python: "3.10" }
name: Run pre-commit
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -46,7 +46,7 @@ jobs:
config:
- { python: "3.10" }
name: Test spot_wrapper package
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down

0 comments on commit 3b5fd5a

Please sign in to comment.