notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit 43310b271ee27153b1ecb58badc9ca0906c0f2f4
parent d04fc892a7d1d8fb724c798b5fadcecf6834f831
Author: William Casarin <jb55@jb55.com>
Date:   Thu, 17 Apr 2025 14:13:55 -0700

ci: bump ubuntu runner

Since our current runner was deprecated

Link: https://github.com/actions/runner-images/issues/11101

Diffstat:
M.github/workflows/rust.yml | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml @@ -12,7 +12,7 @@ on: jobs: lint: name: Rustfmt + Clippy - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable @@ -26,7 +26,7 @@ jobs: name: Test (Linux) uses: ./.github/workflows/build-and-test.yml with: - os: ubuntu-20.04 + os: ubuntu-22.04 additional-setup: | sudo apt-get install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev @@ -44,7 +44,7 @@ jobs: packaging: name: rpm/deb - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 needs: linux-test if: github.ref_name == 'master' || github.ref_name == 'ci' @@ -255,7 +255,7 @@ jobs: upload-artifacts: name: Upload Artifacts to Server - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 needs: [packaging, macos-dmg, windows-installer] if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/ci'