Skip to content

Switch to ubuntu-22.04 for github workflow #13152

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ concurrency:
jobs:
docs:
name: docs
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
@@ -36,7 +36,7 @@ jobs:
- run: nox -s docs

determine-changes:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
tests: ${{ steps.filter.outputs.tests }}
vendoring: ${{ steps.filter.outputs.vendoring }}
@@ -64,7 +64,7 @@ jobs:

packaging:
name: packaging
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
@@ -83,7 +83,7 @@ jobs:

vendoring:
name: vendoring
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

needs: [determine-changes]
if: >-
@@ -112,7 +112,7 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-13, macos-latest]
os: [ubuntu-22.04, macos-13, macos-latest]
python:
- "3.8"
- "3.9"
@@ -129,7 +129,7 @@ jobs:
allow-prereleases: true

- name: Install Ubuntu dependencies
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install bzr
@@ -216,7 +216,7 @@ jobs:

tests-zipapp:
name: tests / zipapp
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

needs: [packaging, determine-changes]
if: >-
@@ -257,7 +257,7 @@ jobs:
- tests-zipapp
- vendoring

runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Decide whether the needed jobs succeeded or failed
1 change: 1 addition & 0 deletions news/13152.trivial.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Switch to ubuntu-22.04 for github workflow.