update-flake-lock #24
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
# --- Periodically update flake inputs in flake.lock | |
name: update-flake-lock | |
on: | |
workflow_dispatch: # allows manual triggering from the Actions UI | |
schedule: | |
- cron: "0 0 * * 0" # runs weekly on Sunday at 00:00 | |
jobs: | |
update-flake-lock: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checking out repository..." | |
uses: actions/checkout@v4 | |
- name: "Installing and configuring the nix package manager..." | |
uses: DeterminateSystems/nix-installer-action@main | |
with: | |
extra-conf: | | |
accept-flake-config = true | |
- name: "Setting up magic-nix-cache..." | |
uses: DeterminateSystems/magic-nix-cache-action@main | |
- name: "Updating flake.lock..." | |
uses: DeterminateSystems/update-flake-lock@main | |
with: | |
pr-title: "Automated action - Update flake.lock" | |
pr-labels: | | |
dependencies | |
automated | |
# NOTE You can use a personal access token to identify | |
# as a concrete user, this may be useful when you want to | |
# trigger additional CI actions. | |
# | |
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }} |