Skip to content

Commit e377fb5

Browse files
build(deps): bump actions/checkout from 4 to 5 in /.github/workflows (#1006)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent de803ef commit e377fb5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ jobs:
77
name: Check
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111
- run: cargo check --workspace --all-targets --all-features
1212

1313
check_msrv:
1414
name: Check ash, ash-window and ash-rewrite MSRV (1.69.0)
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- uses: dtolnay/[email protected]
1919
- name: Check ash, ash-window and ash-rewrite
2020
run: cargo check -p ash -p ash-rewrite -p ash-window --all-features
@@ -26,7 +26,7 @@ jobs:
2626
name: Generated
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
- name: Checkout submodule
3131
# Manually update submodules with --checkout because they are configured with update=none and will be skipped otherwise
3232
run: git submodule update --recursive --init --force --checkout
@@ -41,7 +41,7 @@ jobs:
4141
steps:
4242
- name: Install Vulkan loader
4343
run: sudo apt-get install libvulkan-dev
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545
- name: Test all targets
4646
run: cargo test --workspace --all-targets
4747
- name: Test docs
@@ -51,7 +51,7 @@ jobs:
5151
name: Rustfmt
5252
runs-on: ubuntu-latest
5353
steps:
54-
- uses: actions/checkout@v4
54+
- uses: actions/checkout@v5
5555
- run: cargo fmt --all -- --check
5656

5757
clippy:
@@ -65,7 +65,7 @@ jobs:
6565
- x86_64-apple-darwin
6666
- aarch64-apple-ios
6767
steps:
68-
- uses: actions/checkout@v4
68+
- uses: actions/checkout@v5
6969
- name: Add Rust target ${{ matrix.target }}
7070
run: rustup target add ${{ matrix.target }}
7171
- name: Clippy lint without features
@@ -86,7 +86,7 @@ jobs:
8686
name: Build-test docs
8787
runs-on: ubuntu-latest
8888
steps:
89-
- uses: actions/checkout@v4
89+
- uses: actions/checkout@v5
9090
- name: Document all crates
9191
env:
9292
RUSTDOCFLAGS: -Dwarnings

0 commit comments

Comments
 (0)