Skip to content

Commit 70c77f0

Browse files
authored
chore(deps): bump dependencies and run cargo audit (#70)
Signed-off-by: Radu Matei <[email protected]>
1 parent e5cfd7b commit 70c77f0

File tree

6 files changed

+254
-469
lines changed

6 files changed

+254
-469
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Install Rust
3939
uses: dtolnay/rust-toolchain@stable
4040
with:
41-
toolchain: 1.87
41+
toolchain: 1.88
4242
targets: ${{ matrix.config.target }}
4343
- name: Install Spin
4444
uses: rajatjindal/setup-actions/spin@main
@@ -56,6 +56,10 @@ jobs:
5656
echo 'linker = "aarch64-linux-gnu-gcc"' >> ${HOME}/.cargo/config.toml
5757
- name: Build plugin binary
5858
run: cargo build --release --target ${{ matrix.config.target }} ${{ matrix.config.extraArg }}
59+
- name: Run cargo audit
60+
run: |
61+
cargo install cargo-audit --locked
62+
cargo audit
5963
- name: Copy plugin binary to standard location
6064
shell: bash
6165
run: cp target/${{ matrix.config.target }}/release/${{ env.PROGRAM_NAME}}${{ matrix.config.extension }} target/release/${{ env.PROGRAM_NAME}}${{ matrix.config.extension }}

0 commit comments

Comments
 (0)