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
6 changes: 3 additions & 3 deletions .github/workflows/cargo-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@
pull_request:
name: cargo build
jobs:
cargobuild:

Check warning on line 15 in .github/workflows/cargo-build.yml

View workflow job for this annotation

GitHub Actions / zizmor

excessive-permissions

cargo-build.yml:15: overly broad permissions: default permissions used due to no permissions: block
name: cargo build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6

Check warning on line 19 in .github/workflows/cargo-build.yml

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

cargo-build.yml:19: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
- name: Cache cargo registry
uses: actions/cache@v5
uses: actions/cache@v5.0.4
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v5
uses: actions/cache@v5.0.4
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v5
uses: actions/cache@v5.0.4
with:
path: target
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cargo-clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,23 @@
- 'rust-toolchain.toml'
name: cargo clippy
jobs:
cargoclippy:

Check warning on line 22 in .github/workflows/cargo-clippy.yml

View workflow job for this annotation

GitHub Actions / zizmor

excessive-permissions

cargo-clippy.yml:22: overly broad permissions: default permissions used due to no permissions: block
name: cargo clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6

Check warning on line 26 in .github/workflows/cargo-clippy.yml

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

cargo-clippy.yml:26: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
- name: Cache cargo registry
uses: actions/cache@v5
uses: actions/cache@v5.0.4
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v5
uses: actions/cache@v5.0.4
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v5
uses: actions/cache@v5.0.4
with:
path: target
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cargo-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@
workflow_dispatch:
name: cargo test
jobs:
cargotest:

Check warning on line 17 in .github/workflows/cargo-test.yml

View workflow job for this annotation

GitHub Actions / zizmor

excessive-permissions

cargo-test.yml:17: overly broad permissions: default permissions used due to no permissions: block
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6

Check warning on line 21 in .github/workflows/cargo-test.yml

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

cargo-test.yml:21: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
- name: Cache cargo registry
uses: actions/cache@v5
uses: actions/cache@v5.0.4
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v5
uses: actions/cache@v5.0.4
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v5
uses: actions/cache@v5.0.4
with:
path: target
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
Expand Down
Loading