Skip to content
This repository was archived by the owner on May 12, 2026. It is now read-only.
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
6 changes: 6 additions & 0 deletions .cargo/audit.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
[advisories]
ignore = [
"RUSTSEC-2024-0436",
"RUSTSEC-2025-0134",
"RUSTSEC-2026-0002",
"RUSTSEC-2026-0049",
"RUSTSEC-2026-0037",
"RUSTSEC-2026-0097",
"RUSTSEC-2026-0098",
"RUSTSEC-2026-0099"
]
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.91
toolchain: "1.93"
targets: ${{ matrix.config.target }}
- name: Install Spin
uses: rajatjindal/setup-actions/spin@main
uses: fermyon/actions/spin/setup@v1
with:
version: "v3.3.0"
version: "canary"
- name: Install pluginify
shell: bash
run: spin plugins install --url https://github.com/itowlson/spin-pluginify/releases/download/canary/pluginify.json --yes
run: spin plugins install pluginify --yes
Copy link
Copy Markdown
Contributor

@vdice vdice Apr 1, 2026

Choose a reason for hiding this comment

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

note: you can do away with this separate step and replace it with plugins: pluginify in the previous spin/setup step (https://github.com/spinframework/actions?tab=readme-ov-file#install-spin-cli-and-plugins---spinframeworkactionsspinsetupv1)

- name: Set up for cross-compiled linux aarch64 build
if: matrix.config.target == 'aarch64-unknown-linux-gnu'
run: |
Expand Down Expand Up @@ -81,12 +81,12 @@ jobs:
needs: build
steps:
- name: Install Spin
uses: rajatjindal/setup-actions/spin@main
uses: fermyon/actions/spin/setup@v1
with:
version: "v2.0.0"
version: "canary"
- name: Install pluginify
shell: bash
run: spin plugins install --url https://github.com/itowlson/spin-pluginify/releases/download/canary/pluginify.json --yes
run: spin plugins install pluginify --yes
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

ditto above


- name: set the release version (tag)
if: startsWith(github.ref, 'refs/tags/v')
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.91
toolchain: "1.93"
targets: wasm32-wasip2

- name: Install Spin
uses: rajatjindal/setup-actions/spin@main
uses: fermyon/actions/spin/setup@v1
with:
version: "v3.3.0"
version: "canary"

- name: Install pluginify
shell: bash
run: spin plugins install --url https://github.com/itowlson/spin-pluginify/releases/download/canary/pluginify.json --yes
run: spin plugins install pluginify --yes
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

noting this if similar steps are updated in build.yml


- name: Run E2E tests
env:
Expand Down
Loading
Loading