Skip to content

Commit

Permalink
ci: Update actions/checkout from v3 to v4.
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored and sebcrozet committed Apr 28, 2024
1 parent 57a472f commit 7f44667
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/parry-ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ jobs:
check-fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt -- --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Clippy
run: cargo clippy
build-native:
runs-on: ubuntu-latest
env:
RUSTFLAGS: -D warnings
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: sudo apt-get install -y cmake libxcb-composite0-dev
- name: Build parry2d
run: cargo build --verbose -p parry2d;
Expand All @@ -46,7 +46,7 @@ jobs:
env:
RUSTFLAGS: -D warnings
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: rustup target add wasm32-unknown-unknown
- name: build parry2d
run: cd crates/parry2d && cargo build --verbose --target wasm32-unknown-unknown;
Expand All @@ -55,7 +55,7 @@ jobs:
build-no-std:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install latest nightly
uses: dtolnay/rust-toolchain@master
with:
Expand Down

0 comments on commit 7f44667

Please sign in to comment.