Update Nix dependencies #14
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 Nix dependencies | |
on: | |
schedule: | |
# Sunday and Wednesday | |
- cron: '42 4 * * 0,3' | |
workflow_dispatch: | |
jobs: | |
update-deps-conservative: | |
runs-on: ubuntu-latest | |
permissions: | |
# So that `create-pull-request` can... create a pull request :) | |
# https://github.com/peter-evans/create-pull-request#action-inputs | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v22 | |
with: | |
extra_nix_config: | | |
system-features = benchmark big-parallel kvm nixos-test uid-range | |
- name: update lockfiles | |
run: nix run '.#devshell' -- update-deps-conservative | |
- name: create PR | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
branch: create-pull-request/update-nix-deps | |
title: '[create-pull-request] Update Nix dependencies' | |
body: | | |
Update Nix dependencies in `Gemfile.nix.lock` and `gemset.nix`. | |
Auto-generated by [create-pull-request][1]. | |
[1]: https://github.com/peter-evans/create-pull-request |