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/cargo-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
schedule:
- cron: 0 * * * * # hourly

permissions: read-all

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

View workflow job for this annotation

GitHub Actions / zizmor

excessive-permissions

cargo-test.yml:22: overly broad permissions: uses read-all permissions

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand All @@ -35,7 +35,7 @@
partitionIndex: [1, 2, 3, 4, 5]
partitionTotal: [5]
steps:
- uses: actions/checkout@master

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

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

cargo-test.yml:38: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
- name: Install latest rust
uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -58,7 +58,7 @@
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

- name: Login to GitHub Container Registry
uses: docker/login-action@v4.5.1
uses: docker/login-action@v4.6.0
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down Expand Up @@ -94,7 +94,7 @@
needs: cargotest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master

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

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

cargo-test.yml:97: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
- name: Download coverage artifacts
uses: actions/download-artifact@v8
with:
Expand Down
Loading