Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7

Check failure on line 17 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 17 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

rust.yml:17: unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: Install aarch64 toolchain
uses: dtolnay/rust-toolchain@v1

Check failure on line 19 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 19 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

rust.yml:19: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
toolchain: stable
targets: aarch64-unknown-none
Expand All @@ -28,16 +28,16 @@
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7

Check failure on line 31 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 31 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

rust.yml:31: unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: Format Rust code
run: cargo fmt --all -- --check

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7

Check failure on line 38 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 38 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

rust.yml:38: unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: Install aarch64 toolchain
uses: dtolnay/rust-toolchain@v1

Check failure on line 40 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 40 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

rust.yml:40: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
toolchain: stable
targets: aarch64-unknown-none
Expand All @@ -47,7 +47,7 @@
sudo apt-get update && \
sudo apt-get install -y --no-install-recommends qemu-system-arm ipxe-qemu
- name: Install cargo-binutils
uses: taiki-e/install-action@v2
uses: taiki-e/install-action@v2.85.4

Check failure on line 50 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 50 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

rust.yml:50: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
tool: cargo-binutils
- name: Prepare QEMU
Expand Down
Loading