update-flake-lock #195
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
| name: update-flake-lock | |
| on: | |
| # Allow manual triggering | |
| workflow_dispatch: | |
| # Run on Saturdays at midnight | |
| schedule: | |
| - cron: '0 0 * * 6' | |
| jobs: | |
| lockfile: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: DeterminateSystems/nix-installer-action@main | |
| - name: Update flake.lock | |
| uses: DeterminateSystems/update-flake-lock@main | |
| with: | |
| pr-assignees: Lehmanator | |
| pr-reviewers: Lehmanator | |
| token: ${{ secrets.GH_TOKEN_FOR_UPDATES }} | |
| #sign-commits: true | |
| #gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} | |
| #gpg-fingerprint: ${{ secrets.GPG_FINGERPRINT }} # specify subkey fingerprint (optional) | |
| #gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }} | |