Skip to content

Commit

Permalink
use commits in actions and not tags
Browse files Browse the repository at this point in the history
  • Loading branch information
darioAnongba committed Dec 9, 2024
1 parent 5e35616 commit 026d8f2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ jobs:
- name: checkout
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@4f647fc679bcd3b11499ccb42104547c83dabe96
with:
toolchain: ${{ matrix.rust.version }}
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh -s -- -f
- name: Rust Cache
uses: Swatinem/rust-cache@v2.7.5
uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab
- name: Build
run: |
if [ "${{ matrix.features }}" = "all" ]; then
Expand All @@ -57,7 +57,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@4f647fc679bcd3b11499ccb42104547c83dabe96
with:
toolchain: stable
components: rustfmt
Expand All @@ -71,11 +71,11 @@ jobs:
checks: write
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: dtolnay/rust-toolchain@4f647fc679bcd3b11499ccb42104547c83dabe96
with:
toolchain: ${{ needs.prepare.outputs.rust_version }}
components: clippy
- name: Rust Cache
uses: Swatinem/rust-cache@v2.7.5
uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab
- name: Run Clippy
run: cargo clippy --all-features --all-targets -- -D warnings

0 comments on commit 026d8f2

Please sign in to comment.