Update flake.lock #45
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 flake.lock | |
on: | |
workflow_dispatch: # allows manual triggering | |
schedule: | |
- cron: "0 0 * * 1" # runs weekly on Monday at 00:00 | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
lockfile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v30 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: Update flake.lock | |
uses: DeterminateSystems/update-flake-lock@v24 | |
with: | |
pr-title: "Update flake.lock" | |
pr-labels: | | |
dependencies | |
pr-body: | | |
Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action. | |
``` | |
{{ env.GIT_COMMIT_MESSAGE }} | |
``` | |
### Running GitHub Actions on this PR | |
GitHub Actions will not run workflows on pull requests which are opened by a GitHub Action. | |
To run GitHub Actions workflows on this PR, run: | |
```sh | |
git branch -D update_flake_lock_action && \ | |
git fetch origin && \ | |
git checkout update_flake_lock_action && \ | |
git commit --amend --no-edit && \ | |
git push origin update_flake_lock_action --force | |
``` |