From 9e3027896e29e1711ccbf44caee09f3576b8cf46 Mon Sep 17 00:00:00 2001 From: arctic-alpaca <67190338+arctic-alpaca@users.noreply.github.com> Date: Thu, 19 Jan 2023 15:30:14 +0100 Subject: [PATCH] CI: Pin nightly toolchain to 2023-01-10, install bpf-linker on stable --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39648fb..3af968d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,14 +46,14 @@ jobs: with: toolchain: stable - - name: Install latest nightly + - name: Install latest nightly (pinned to nightly-2023-01-10, https://github.com/aya-rs/aya/issues/490) uses: actions-rs/toolchain@v1 with: - toolchain: nightly + toolchain: nightly-2023-01-10 components: rust-src - name: Install bpf-linker - run: cargo +nightly install bpf-linker + run: cargo install bpf-linker - name: Install Cargo Generate run: cargo install --git https://github.com/cargo-generate/cargo-generate cargo-generate