aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/rapier-ci-build.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/rapier-ci-build.yml b/.github/workflows/rapier-ci-build.yml
index b4bc538..9328bc9 100644
--- a/.github/workflows/rapier-ci-build.yml
+++ b/.github/workflows/rapier-ci-build.yml
@@ -13,7 +13,7 @@ jobs:
check-fmt:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Check formatting
run: cargo fmt -- --check
build-native:
@@ -21,7 +21,7 @@ jobs:
env:
RUSTFLAGS: -D warnings
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- run: sudo apt-get install -y cmake libxcb-composite0-dev
- name: Build rapier2d
run: cargo build --verbose -p rapier2d;
@@ -54,7 +54,7 @@ jobs:
env:
RUSTFLAGS: -D warnings
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- run: rustup target add wasm32-unknown-unknown
- name: build rapier2d
run: cd crates/rapier2d && cargo build --verbose --features wasm-bindgen --target wasm32-unknown-unknown;
@@ -65,7 +65,7 @@ jobs:
env:
RUSTFLAGS: -D warnings
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- run: rustup target add wasm32-unknown-emscripten
- name: build rapier2d
run: cd crates/rapier2d && cargo build --verbose --target wasm32-unknown-emscripten;