Skip to content

Commit

Permalink
ci: use Ubuntu 22.04 instead of 20.04 for all jobs
Browse files Browse the repository at this point in the history
Let's modernize.
  • Loading branch information
indygreg committed Dec 26, 2022
1 parent 33cb512 commit 6d51805
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-exe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
fail-fast: false
matrix:
target:
- os: 'ubuntu-20.04'
- os: 'ubuntu-22.04'
triple: 'aarch64-unknown-linux-musl'
cross: true
- os: 'ubuntu-20.04'
- os: 'ubuntu-22.04'
triple: 'x86_64-unknown-linux-musl'
- os: 'macos-11'
triple: 'aarch64-apple-darwin'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cargo_deny.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
workflow_dispatch:
jobs:
pyembed:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: EmbarkStudios/cargo-deny-action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/oxidized_importer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
build: 'cp310-manylinux_i686'
- arch: 'x86_64'
build: 'cp310-manylinux_x86_64'
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
CIBW_ENVIRONMENT: 'PATH="$PATH:$HOME/.cargo/bin"'
CIBW_BEFORE_BUILD: 'ci/install-rust-linux.sh'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pyoxidizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
pyoxidizer-linux-x86_64-bin-check:
needs:
- pyoxidizer-exes
runs-on: 'ubuntu-20.04'
runs-on: 'ubuntu-22.04'
steps:
- name: Install musl compiler
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pyoxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
workflow_dispatch:
jobs:
pyoxidizer-linux:
runs-on: 'ubuntu-20.04'
runs-on: 'ubuntu-22.04'
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
- 'x86_64-unknown-linux-gnu'
# Not yet working due to rust config issues.
# - 'x86_64-unknown-linux-musl'
runs-on: 'ubuntu-20.04'
runs-on: 'ubuntu-22.04'
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sign-apple-exe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ on:
jobs:
sign:
name: Sign ${{ github.event.inputs.exe_name }}
runs-on: 'ubuntu-20.04'
runs-on: 'ubuntu-22.04'
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- pyoxy/docs
- tugger/docs
- docs
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workspace-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
target:
- os: 'ubuntu-20.04'
- os: 'ubuntu-22.04'
triple: 'x86_64-unknown-linux-gnu'
- os: 'macos-11'
triple: 'aarch64-apple-darwin'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# and the `Installing Rust` documentation when this changes.
- '1.65.0'
target:
- os: 'ubuntu-20.04'
- os: 'ubuntu-22.04'
triple: 'x86_64-unknown-linux-gnu'
- os: 'macos-11'
triple: 'x86_64-apple-darwin'
Expand Down

0 comments on commit 6d51805

Please sign in to comment.