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 github actions to use ubuntu 24 #2321

Closed
wants to merge 1 commit into from
Closed
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
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
matrix:
debian_version:
- bookworm
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container: debian:${{ matrix.debian_version }}
steps:
- run: |
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
matrix:
debian_version:
- bookworm
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
outputs:
artifact_id: ${{ steps.upload.outputs.artifact-id }}
steps:
Expand All @@ -76,7 +76,7 @@ jobs:
matrix:
debian_version:
- bookworm
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
outputs:
artifact_id: ${{ steps.upload.outputs.artifact-id }}
steps:
Expand All @@ -101,7 +101,7 @@ jobs:
matrix:
debian_version:
- bookworm
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container: debian:bookworm
needs:
- build-debs
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
- whonix-config
debian_version:
- bookworm
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs:
- build-debs
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cargo-vet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:
jobs:
cargo-vet:
name: Vet Dependencies
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
# Keep version in sync with rust-toolchain.toml
container: rust:1.81.0
env:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
matrix:
debian_version:
- bookworm
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container: debian:${{ matrix.debian_version }}
steps:
- run: |
Expand All @@ -34,7 +34,7 @@ jobs:
matrix:
debian_version:
- bookworm
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container: debian:${{ matrix.debian_version }}
steps:
- run: |
Expand All @@ -49,7 +49,7 @@ jobs:
matrix:
debian_version:
- bookworm
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container: debian:${{ matrix.debian_version }}
steps:
- run: |
Expand All @@ -74,7 +74,7 @@ jobs:
- log
debian_version:
- bookworm
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container: debian:${{ matrix.debian_version }}
steps:
- run: |
Expand All @@ -90,7 +90,7 @@ jobs:
run: make -C ${{ matrix.component }} lint

safety:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container: debian:bookworm
steps:
- run: |
Expand All @@ -103,7 +103,7 @@ jobs:
make safety

rust:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
# Keep version in sync with rust-toolchain.toml
container: rust:1.81.0
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightlies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
matrix:
debian_version:
- bookworm
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
outputs:
artifact_id: ${{ steps.upload.outputs.artifact-id }}
steps:
Expand All @@ -45,7 +45,7 @@ jobs:
if-no-files-found: error

commit-and-push:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container: debian:bookworm
needs:
- build-debs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ defaults:

jobs:
sdk-with-server:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
env:
DOCKERIZE_VERSION: "v0.7.0"
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
rust-audit:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
# Keep version in sync with rust-toolchain.toml
container: rust:1.81.0
steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- proxy
debian_version:
- bookworm
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container: debian:${{ matrix.debian_version }}
steps:
- run: |
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
- test-random
debian_version:
- bookworm
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container: debian:${{ matrix.debian_version }}
steps:
- run: |
Expand All @@ -94,7 +94,7 @@ jobs:
matrix:
debian_version:
- bookworm
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container: debian:${{ matrix.debian_version }}
steps:
- run: |
Expand Down
Loading