9438e56a7b
2.14 has a bug related to profile locations that breaks nix-env, which in turn breaks cachix. Pin to 2.13 for now. More info at https://github.com/NixOS/nixpkgs/pull/218858#issuecomment-1448758169
23 lines
598 B
YAML
23 lines
598 B
YAML
name: Update flake inputs
|
|
on:
|
|
schedule:
|
|
# Update every Sunday and Wednesday
|
|
- cron: "51 3 * * 0,3"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
- name: Install Nix
|
|
uses: cachix/install-nix-action@v19
|
|
with:
|
|
install_url: https://releases.nixos.org/nix/nix-2.13.3/install
|
|
- name: Update flake.lock
|
|
uses: DeterminateSystems/update-flake-lock@v16
|
|
with:
|
|
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
|
pr-labels: dependencies
|