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

fix: usage of node12 which is deprecated in CI #126

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
RUST: ["1.63", stable, beta, nightly]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set Rust version
run: rustup default ${{ matrix.RUST }}
- name: Build
Expand All @@ -27,19 +27,19 @@ jobs:
no-std-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose --no-default-features
- name: Check under no_std
run: |
# aarch64-unknown-none is Tier 2, has no `std`, but does have atomic pointers.
rustup target add aarch64-unknown-none
cargo check --verbose --target aarch64-unknown-none --no-default-features

miri-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

v4 is the latest major version of this action at the time of this writing.

- name: Setup MIRI-Compatible Toolchain
run: |
MIRI_NIGHTLY=nightly-$(curl -s https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu/miri)
Expand Down