mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 05:09:44 +01:00
07b2c41d2d
* cachix/install-nix-action: v23 -> v27 Release: https://github.com/cachix/install-nix-action/releases/tag/v27 * actions/labeler: v4 -> v5 Release: https://github.com/actions/labeler/releases/tag/v5.0.0 * DeterminateSystems/update-flake-lock: v21 -> v22 Release: https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v22 Signed-off-by: Sumner Evans <me@sumnerevans.com>
20 lines
511 B
YAML
20 lines
511 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@v4
|
|
- name: Install Nix
|
|
uses: cachix/install-nix-action@v27
|
|
- name: Update flake.lock
|
|
uses: DeterminateSystems/update-flake-lock@v22
|
|
with:
|
|
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
|
pr-labels: dependencies
|