Skip to content
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

Update dependency ubuntu to v24 #1066

Merged
merged 1 commit into from
Oct 1, 2024
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
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

test-py:
name: Test Python
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
python-version:
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:

test-js:
name: Test JavaScript
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
needs:
- test-py
- test-js
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand All @@ -101,7 +101,7 @@ jobs:
needs:
- test-py
- test-js
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
Expand All @@ -127,7 +127,7 @@ jobs:
needs:
- build
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Extract metadata (tags, labels) for Docker
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
needs:
- build
if: ${{ startsWith(github.ref, 'refs/tags') }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Extract metadata (tags, labels) for Docker
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
needs:
- build
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand All @@ -223,7 +223,7 @@ jobs:
needs:
- build
if: ${{ startsWith(github.ref, 'refs/tags') }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand All @@ -248,7 +248,7 @@ jobs:
needs:
- build-doc
if: ${{ startsWith(github.ref, 'refs/tags') }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Download doc artifacts
Expand Down
Loading