Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/bootloader.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
- .github/workflows/bootloader.yml

jobs:
build_bootloader:

Check warning on line 14 in .github/workflows/bootloader.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

bootloader.yml:14: overly broad permissions: default permissions used due to no permissions: block
strategy:
fail-fast: false
matrix:
Expand All @@ -22,8 +22,8 @@
arch: aarch64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version: stable
cache-dependency-path: "**/go.sum"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release

Check warning on line 1 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

release.yml:1: overly broad permissions: default permissions used due to no permissions: block

on:
push:
Expand All @@ -6,7 +6,7 @@
- "v*"

jobs:
build_alioth:

Check warning on line 9 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

release.yml:9: overly broad permissions: default permissions used due to no permissions: block
strategy:
matrix:
include:
Expand All @@ -18,8 +18,8 @@
os: macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: dtolnay/rust-toolchain@stable

Check failure on line 22 in .github/workflows/release.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 22 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

release.yml:22: unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: Build
run: RUSTFLAGS='-C target-feature=+crt-static' cargo +stable build --target ${{ matrix.target }} --release
- name: Upload artifact
Expand All @@ -28,7 +28,7 @@
name: alioth-${{ matrix.target }}
path: target/${{ matrix.target }}/release/alioth

build_bootloader:

Check warning on line 31 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

release.yml:31: overly broad permissions: default permissions used due to no permissions: block
uses: ./.github/workflows/bootloader.yml

create_release:
Expand All @@ -37,7 +37,7 @@
permissions:
contents: write
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Get tag message
id: tag_message
run: |
Expand All @@ -64,7 +64,7 @@
-C $PWD/docs macos-signing.md
xz alioth-*-*.tar
- name: Create Release
uses: softprops/action-gh-release@718ea10b132b3b2eba29c1007bb80653f286566b # v3.0.1
uses: softprops/action-gh-release@3d0d9888cb7fd7b750713d6e236d1fcb99157228 # v3.0.2

Check notice on line 67 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

superfluous-actions

release.yml:67: action functionality is already included by the runner: use `gh release` in a script step
with:
files: alioth-*-*.tar.xz
fail_on_unmatched_files: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Rust

permissions: read-all

Check warning on line 3 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

rust.yml:3: overly broad permissions: uses read-all permissions

on:
push:
Expand Down Expand Up @@ -35,7 +35,7 @@
runs-on: ${{ matrix.target.os }}

steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: |
Expand All @@ -46,15 +46,15 @@
target/
key: ${{ matrix.target.name }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install nightly Rust
uses: dtolnay/rust-toolchain@nightly

Check failure on line 49 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 49 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

rust.yml:49: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
components: rustfmt,llvm-tools
- name: Install stable Rust
uses: dtolnay/rust-toolchain@stable

Check failure on line 53 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 53 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

rust.yml:53: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
components: clippy
- name: Install tools
uses: taiki-e/install-action@16b05812d776ae1dfaabc8277e421fb6d2506419 # v2.82.7
uses: taiki-e/install-action@065d6a08a14e61e89fb0a4c10eecdbdef39c7d8e # v2.85.4
with:
tool: cargo-llvm-cov,cargo-deny
- name: Check dependencies
Expand Down Expand Up @@ -84,7 +84,7 @@
needs: build_test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Download coverage reports
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
Expand All @@ -96,5 +96,5 @@
sed -i 's#SF:/Users/#SF:/home/#g' lcov/*apple-darwin*.info
npx lcov-result-merger 'lcov/lcov-*.info' lcov.info
- name: Upload coverage
uses: coverallsapp/github-action@5cbfd81b66ca5d10c19b062c04de0199c215fb6e # v2.3.7
uses: coverallsapp/github-action@8d6379e14d29928660c4ba802d8e85393440b329 # v2.3.8
continue-on-error: true
Loading