Skip to content

Commit

Permalink
Merge pull request #1099 from carmenbianca/ubuntu-24.04
Browse files Browse the repository at this point in the history
Use Ubuntu 24.04 images
  • Loading branch information
carmenbianca authored Oct 31, 2024
2 parents 6090c9b + ab524a1 commit 3251694
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
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

0 comments on commit 3251694

Please sign in to comment.