From 11f406414ebeaaf2a4ee88cc30fcd35e85524f01 Mon Sep 17 00:00:00 2001 From: Michal Rostecki Date: Sat, 28 Jan 2023 13:32:43 +0800 Subject: [PATCH] Unpin Rust nightly The issues with core::sync::atomic got fixed. Signed-off-by: Michal Rostecki --- .github/workflows/ci.yml | 4 ++-- {{project-name}}-ebpf/rust-toolchain.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 288e83e..ca8cdbd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,10 +47,10 @@ jobs: with: toolchain: stable - - name: Install latest nightly (pinned to nightly-2023-01-10, https://github.com/aya-rs/aya/issues/490) + - name: Install latest nightly uses: actions-rs/toolchain@v1 with: - toolchain: nightly-2023-01-10 + toolchain: nightly components: rust-src - name: Install bpf-linker diff --git a/{{project-name}}-ebpf/rust-toolchain.toml b/{{project-name}}-ebpf/rust-toolchain.toml index 4893202..65561df 100644 --- a/{{project-name}}-ebpf/rust-toolchain.toml +++ b/{{project-name}}-ebpf/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel="nightly-2023-01-10" +channel="nightly" # The source code of rustc, provided by the rust-src component, is needed for # building eBPF programs. components = [ "rustc", "rust-std", "cargo", "rust-docs", "rustfmt", "clippy", "rust-src" ]