Skip to content
Merged
Show file tree
Hide file tree
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
20 changes: 10 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
CC: clang-cl
CXX: clang-cl
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- run: curl -vv https://static.rust-lang.org/dist/channel-rust-1.87.0.toml.sha256
shell: bash
- name: Install Rust (rustup)
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
name: Test linker-plugin-lto
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install Rust (rustup)
run: |
set -euxo pipefail
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
- aarch64-apple-visionos
- aarch64-apple-visionos-sim
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install Rust (rustup)
run: |
set -euxo pipefail
Expand All @@ -286,7 +286,7 @@ jobs:
matrix:
target: [wasm32-unknown-unknown]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install Rust (rustup)
run: |
rustup target add ${{ matrix.target }}
Expand All @@ -312,7 +312,7 @@ jobs:
env:
TARGET: ${{ matrix.target }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install Rust (rustup)
run: |
rustup toolchain install nightly --no-self-update --profile minimal --target $TARGET
Expand Down Expand Up @@ -356,7 +356,7 @@ jobs:
name: Test CUDA support
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install cuda-minimal-build-11-8
working-directory: ${{ runner.temp }}
shell: bash
Expand Down Expand Up @@ -387,7 +387,7 @@ jobs:
env:
MSRV: 1.63.0
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install Rust
run: |
rustup toolchain install $MSRV --no-self-update --profile minimal
Expand All @@ -404,7 +404,7 @@ jobs:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install Rust
run: |
rustup toolchain install stable --no-self-update --profile minimal --component clippy
Expand All @@ -420,7 +420,7 @@ jobs:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install Rust
run: |
rustup toolchain install stable --no-self-update --profile minimal --component rustfmt
Expand All @@ -433,7 +433,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Check semver
uses: obi1kenobi/cargo-semver-checks-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install Rust toolchain
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/regenerate-target-info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Regenerate target info & Open Pull Request if necessary
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/regenerate-windows-sys.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Regenerate windows sys bindings & Open Pull Request if necessary
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
cancel-in-progress: false
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install Rust toolchain
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-rustc-targets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
if: github.repository_owner == 'rust-lang'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: true

Expand Down
Loading