update #35
This file contains 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 | |
on: | |
workflow_dispatch: | |
schedule: | |
# Run at an odd time to avoid spikes at, e.g. midnight. | |
# We don't really care too much about the particular time. | |
# https://crontab.guru/#17_1_*_*_Mon | |
- cron: '17 1 * * Mon' | |
jobs: | |
lockfile: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@v12 | |
- uses: DeterminateSystems/update-flake-lock@v23 | |
with: | |
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }} | |
pr-title: "flake: Update flake.lock" | |
pr-labels: | | |
automated |