aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2023-09-09 12:56:54 +0200
committerGitHub <noreply@github.com>2023-09-09 12:56:54 +0200
commitc3ef34b8e95b82d58b4bca76a2120825f1197eb2 (patch)
tree99f14d1a743c5521140cf4892ab864a615d9c913
parent50b838381b8c3da8dbb0346b5baed54da66943b2 (diff)
parent10bc99c2e9cf3ea115c93ebe9a478a2b611efc33 (diff)
downloadrapier-c3ef34b8e95b82d58b4bca76a2120825f1197eb2.tar.gz
rapier-c3ef34b8e95b82d58b4bca76a2120825f1197eb2.tar.bz2
rapier-c3ef34b8e95b82d58b4bca76a2120825f1197eb2.zip
Merge pull request #519 from waywardmonkeys/update-ci
ci: Update to `actions/checkout@v3`.
-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;