-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps): bump actions/checkout from 1 to 4 in /.github/workflows
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](actions/checkout@v1...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
1 parent
6c75404
commit 87cd2e4
Showing
1 changed file
with
8 additions
and
8 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 |
---|---|---|
|
@@ -7,22 +7,22 @@ jobs: | |
name: Check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/checkout@v4 | ||
- run: cargo check --workspace --all-targets --all-features | ||
|
||
check_msrv: | ||
name: Check ash MSRV (1.60.0) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/[email protected] | ||
- run: cargo check -p ash -p ash-rewrite --all-features | ||
|
||
check_ash_window_msrv: | ||
name: Check ash-window MSRV (1.64.0) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/[email protected] | ||
- run: cargo check -p ash-window -p examples --all-features | ||
|
||
|
@@ -31,7 +31,7 @@ jobs: | |
name: Generated | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/checkout@v4 | ||
- name: Checkout submodule | ||
# 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 | ||
|
@@ -46,7 +46,7 @@ jobs: | |
steps: | ||
- name: Install Vulkan loader | ||
run: sudo apt-get install libvulkan-dev | ||
- uses: actions/checkout@v1 | ||
- uses: actions/checkout@v4 | ||
- name: Test all targets | ||
run: cargo test --workspace --all-targets | ||
- name: Test docs | ||
|
@@ -56,7 +56,7 @@ jobs: | |
name: Rustfmt | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/checkout@v4 | ||
- run: cargo fmt --all -- --check | ||
|
||
clippy: | ||
|
@@ -70,7 +70,7 @@ jobs: | |
- x86_64-apple-darwin | ||
- aarch64-apple-ios | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/checkout@v4 | ||
- name: Add Rust target ${{ matrix.target }} | ||
run: rustup target add ${{ matrix.target }} | ||
- name: Clippy lint without features | ||
|
@@ -91,7 +91,7 @@ jobs: | |
name: Build-test docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- name: Document all crates | ||
env: | ||
RUSTDOCFLAGS: -Dwarnings | ||
|