build(deps): bump actions/checkout from 1 to 4 in /.github/workflows (#812)
Bumps [actions/checkout](https://github.com/actions/checkout) from 1 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v1...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
6c7540473a
commit
d0c5e97826
16
.github/workflows/ci.yml
vendored
16
.github/workflows/ci.yml
vendored
|
@ -7,14 +7,14 @@ jobs:
|
||||||
name: Check
|
name: Check
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v4
|
||||||
- run: cargo check --workspace --all-targets --all-features
|
- run: cargo check --workspace --all-targets --all-features
|
||||||
|
|
||||||
check_msrv:
|
check_msrv:
|
||||||
name: Check ash MSRV (1.60.0)
|
name: Check ash MSRV (1.60.0)
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v4
|
||||||
- uses: dtolnay/rust-toolchain@1.60.0
|
- uses: dtolnay/rust-toolchain@1.60.0
|
||||||
- run: cargo check -p ash -p ash-rewrite --all-features
|
- run: cargo check -p ash -p ash-rewrite --all-features
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ jobs:
|
||||||
name: Check ash-window MSRV (1.64.0)
|
name: Check ash-window MSRV (1.64.0)
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v4
|
||||||
- uses: dtolnay/rust-toolchain@1.64.0
|
- uses: dtolnay/rust-toolchain@1.64.0
|
||||||
- run: cargo check -p ash-window -p examples --all-features
|
- run: cargo check -p ash-window -p examples --all-features
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ jobs:
|
||||||
name: Generated
|
name: Generated
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v4
|
||||||
- name: Checkout submodule
|
- name: Checkout submodule
|
||||||
# Manually update submodules with --checkout because they are configured with update=none and will be skipped otherwise
|
# Manually update submodules with --checkout because they are configured with update=none and will be skipped otherwise
|
||||||
run: git submodule update --recursive --init --force --checkout
|
run: git submodule update --recursive --init --force --checkout
|
||||||
|
@ -46,7 +46,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Install Vulkan loader
|
- name: Install Vulkan loader
|
||||||
run: sudo apt-get install libvulkan-dev
|
run: sudo apt-get install libvulkan-dev
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v4
|
||||||
- name: Test all targets
|
- name: Test all targets
|
||||||
run: cargo test --workspace --all-targets
|
run: cargo test --workspace --all-targets
|
||||||
- name: Test docs
|
- name: Test docs
|
||||||
|
@ -56,7 +56,7 @@ jobs:
|
||||||
name: Rustfmt
|
name: Rustfmt
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v4
|
||||||
- run: cargo fmt --all -- --check
|
- run: cargo fmt --all -- --check
|
||||||
|
|
||||||
clippy:
|
clippy:
|
||||||
|
@ -70,7 +70,7 @@ jobs:
|
||||||
- x86_64-apple-darwin
|
- x86_64-apple-darwin
|
||||||
- aarch64-apple-ios
|
- aarch64-apple-ios
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v4
|
||||||
- name: Add Rust target ${{ matrix.target }}
|
- name: Add Rust target ${{ matrix.target }}
|
||||||
run: rustup target add ${{ matrix.target }}
|
run: rustup target add ${{ matrix.target }}
|
||||||
- name: Clippy lint without features
|
- name: Clippy lint without features
|
||||||
|
@ -91,7 +91,7 @@ jobs:
|
||||||
name: Build-test docs
|
name: Build-test docs
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
- name: Document all crates
|
- name: Document all crates
|
||||||
env:
|
env:
|
||||||
RUSTDOCFLAGS: -Dwarnings
|
RUSTDOCFLAGS: -Dwarnings
|
||||||
|
|
Loading…
Reference in a new issue