2022-08-22 22:49:13 +02:00
|
|
|
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
|
2023-09-11 03:40:12 +02:00
|
|
|
uses: actions/checkout@v4
|
2022-08-22 22:49:13 +02:00
|
|
|
- name: Install Nix
|
2024-05-26 15:20:31 +02:00
|
|
|
uses: cachix/install-nix-action@V27
|
2022-08-22 22:49:13 +02:00
|
|
|
- name: Update flake.lock
|
2024-03-04 19:50:14 +01:00
|
|
|
uses: DeterminateSystems/update-flake-lock@v21
|
2022-08-22 22:49:13 +02:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
|
|
|
pr-labels: dependencies
|