Skip to content

Commit

Permalink
Merge pull request #436 from trivikr/actions-checkout-v4
Browse files Browse the repository at this point in the history
ci: bump actions/checkout to v4
  • Loading branch information
calebzulawski authored Sep 9, 2024
2 parents 1ef335e + b6222cb commit e967f5e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Run rustfmt
run: cargo fmt --all -- --check

Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
- wasm32-unknown-unknown

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Rust
run: rustup target add ${{ matrix.target }}
- name: Run Clippy
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
# avx512vl, but occasionally doesn't. Maybe one day we can enable it.

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Rust
run: rustup target add ${{ matrix.target }}

Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
- aarch64-apple-darwin
- x86_64-apple-darwin
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Rust
run: rustup target add ${{ matrix.target }}

Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
- { name: default, RUSTFLAGS: "" }
- { name: simd128, RUSTFLAGS: "-C target-feature=+simd128" }
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: Test (debug)
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
# - { target: riscv64gc-unknown-linux-gnu, target_feature: "+v,+zvl128b" }

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Rust
run: rustup target add ${{ matrix.target }}

Expand Down Expand Up @@ -253,6 +253,6 @@ jobs:
env:
PROPTEST_CASES: 16
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Test (Miri)
run: cargo miri test
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Setup Rust
run: |
Expand Down

0 comments on commit e967f5e

Please sign in to comment.