use fixed precision for seed generation since size_t is different on … #27
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | ||
|
Check failure on line 1 in .github/workflows/docker-cleanup.yml
|
||
| schedule: | ||
| - cron: "17 23 * * *" | ||
| workflow_dispatch: | ||
| inputs: | ||
| dry-run: | ||
| default: false | ||
| type: bool | ||
| packages: | ||
| default: 'firestarr-cpp/cache,firestarr-cpp/firestarr' | ||
| type: string | ||
| jobs: | ||
| cleanup-docker: | ||
| runs-on: ubuntu-24.04 | ||
| permissions: | ||
| contents: read | ||
| packages: write | ||
| env: | ||
| DEFAULT_PACKAGES: 'firestarr-cpp/cache,firestarr-cpp/firestarr' | ||
| DEFAULT_DRY_RUN: false | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| submodules: true | ||
| - uses: dataaxiom/ghcr-cleanup-action@v1 | ||
| with: | ||
| dry-run: ${{ inputs.dry-run | env.DEFAULT_DRY_RUN }} | ||
| packages: ${{ inputs.packages | env.DEFAULT_PACKAGES }} | ||