Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/build.yaml
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Runner bump to 1.88 appears to be needed as well.

Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.87
toolchain: 1.88

- name: Install dependencies
run: |
Expand All @@ -41,6 +41,11 @@ jobs:
- name: lint code
run: cargo fmt --all -- --check

- name: cargo audit
run: |
cargo install cargo-audit --locked
cargo audit

- name: Run Clippy
run: cargo clippy --all -- -D warnings
- name: Cancel everything if linting fails
Expand Down Expand Up @@ -68,7 +73,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.87
toolchain: 1.88
targets: ${{ matrix.config.target }}
- name: Install Spin
uses: rajatjindal/setup-actions/spin@main
Expand Down Expand Up @@ -185,4 +190,4 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ env.PROGRAM_NAME }}.json
tag: canary
tag: canary
Loading