-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
runs-on: ${{ matrix.runs-on }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- uses: maxim-lobanov/setup-xcode@v1 | ||
if: matrix.runs-on == 'macos-12' && matrix.toolchain == '1.48' | ||
with: | ||
|
@@ -65,7 +65,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Install Rust | ||
run: | | ||
rustup toolchain install ${{ matrix.toolchain }} --profile minimal --no-self-update --target wasm32-unknown-unknown | ||
|
@@ -89,7 +89,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Install Rust | ||
run: | | ||
rustup toolchain install ${{ matrix.toolchain }} --profile minimal --no-self-update --target wasm32-unknown-unknown | ||
|
@@ -123,7 +123,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Install Rust | ||
run: | | ||
rustup toolchain install stable --profile minimal --no-self-update --target ${{ matrix.target }} | ||
|
@@ -143,7 +143,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Install Rust | ||
run: rustup toolchain install stable --profile minimal --no-self-update | ||
- name: Add Rust components | ||
|
@@ -196,7 +196,7 @@ jobs: | |
runs-on: macos-12 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Install Rust | ||
run: | | ||
rustup toolchain install ${{ matrix.toolchain }} --profile minimal --no-self-update --target ${{ matrix.target }} | ||
|
@@ -226,7 +226,7 @@ jobs: | |
RUST_BACKTRACE: 1 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Install Rust | ||
run: | | ||
rustup toolchain install ${{ matrix.toolchain }} --profile minimal --no-self-update --component clippy | ||
|
@@ -242,7 +242,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Install Rust | ||
run: | | ||
rustup toolchain install nightly --profile minimal --no-self-update --component rust-src | ||
|
@@ -253,7 +253,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Install Rust | ||
run: | | ||
rustup toolchain install nightly --profile minimal --no-self-update | ||
|
@@ -264,7 +264,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Audit | ||
uses: rustsec/[email protected] | ||
with: | ||
|
@@ -274,7 +274,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Install Rust | ||
run: | | ||
rustup toolchain install stable --profile minimal --no-self-update --target x86_64-fortanix-unknown-sgx | ||
|
@@ -288,7 +288,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Node.js runtime | ||
uses: actions/setup-node@v3 | ||
|
@@ -316,7 +316,7 @@ jobs: | |
RUST_BACKTRACE: 1 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Install Rust | ||
run: | | ||
rustup toolchain install ${{ matrix.toolchain }} --profile minimal --no-self-update --target x86_64-fortanix-unknown-sgx | ||
|
@@ -343,7 +343,7 @@ jobs: | |
RUST_BACKTRACE: 1 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Install Rust | ||
run: | | ||
rustup toolchain install ${{ matrix.toolchain }} --profile minimal --no-self-update --component clippy | ||
|
@@ -362,7 +362,7 @@ jobs: | |
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Rust | ||
run: | | ||
|
@@ -380,7 +380,7 @@ jobs: | |
name: Generate windows-core bindings with windows-bindgen | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Clean | ||
run: rm -rf src/Windows.rs | ||
- name: Generate | ||
|