Skip to content

Commit

Permalink
ci: Update to actions/checkout@v2.
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys committed Jul 20, 2023
1 parent e20ff49 commit 940b3c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Z3
run: sudo apt-get install libz3-dev
- name: Build
Expand All @@ -37,7 +37,7 @@ jobs:
build_on_wasm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install emscripten
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install LLVM and Clang # required for bindgen to work, see https://github.com/rust-lang/rust-bindgen/issues/1797
Expand All @@ -91,7 +91,7 @@ jobs:
run_clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Run clippy
Expand Down

0 comments on commit 940b3c1

Please sign in to comment.