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

Use Ubuntu 24.04 images #1099

Merged
merged 1 commit into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
# ===========================================================================
docker_test:
name: Test the Docker images
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
# Dockerfile
Expand All @@ -46,7 +46,7 @@ jobs:
# ===========================================================================
docker_push_tag:
name: Push Docker images for tags to Docker Hub
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
# Depends on successful Docker build/test
needs:
- docker_test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jujutsu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
- "tests/**.py"
jobs:
test-jujutsu:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/license_list_up_to_date.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
license-list-up-to-date:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pijul.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
- "tests/**.py"
jobs:
test-pijul:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.9", "3.12"]
os: [ubuntu-22.04]
os: [ubuntu-24.04]
include:
- python-version: "3.9"
os: macos-latest
Expand All @@ -43,7 +43,7 @@ jobs:
poetry run pytest --cov=reuse

pylint:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand All @@ -59,7 +59,7 @@ jobs:
poetry run pylint src/reuse/ tests/

black:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand All @@ -76,7 +76,7 @@ jobs:
poetry run black --check .

mypy:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand All @@ -92,7 +92,7 @@ jobs:
poetry run mypy

prettier:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
container: node:latest
steps:
- uses: actions/checkout@v2
Expand All @@ -102,7 +102,7 @@ jobs:
run: npx prettier --check .

reuse:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand All @@ -117,7 +117,7 @@ jobs:
run: make reuse

docs:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/third_party_lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:

jobs:
third-party-lint:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
# do not abort the whole test job if one combination in the matrix fails
fail-fast: false
Expand All @@ -45,7 +45,7 @@ jobs:
matrix.repo }}

third-party-lint-expect-failure:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
# do not abort the whole test job if one combination in the matrix fails
fail-fast: false
Expand Down
Loading