Skip to content

Commit

Permalink
Fix CI errors due to ubuntu 24.04 image rollout (#160)
Browse files Browse the repository at this point in the history
### Changelog
<!-- Write a one-sentence summary of the user-impacting change (API,
UI/UX, performance, etc) that could appear in a changelog. Write "None"
if there is no user-facing change -->

None

### Docs

<!-- Link to a Docs PR, tracking ticket in Linear, OR write "None" if no
documentation changes are needed. -->

None

### Description

<!-- Describe the problem, what has changed, and motivation behind those
changes. Pretend you are advocating for this change and the reader is
skeptical. -->

CI [broke
recently](https://github.com/foxglove/schemas/actions/runs/12341162294/job/34439471378?pr=159)
because Python 3.7 is not supported for Ubuntu 24.04 x64. See
actions/setup-python#962. This fixes the
`python` job to use Ubuntu 22.04.
  • Loading branch information
fgwt202412 authored Dec 16, 2024
1 parent 47468f9 commit b2591f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}

python:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04 # Required for python 3.7
defaults:
run:
working-directory: python
Expand Down

0 comments on commit b2591f7

Please sign in to comment.