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 23:47:36 +02:00
|
|
|
uses: actions/checkout@v4
|
2022-08-22 22:49:13 +02:00
|
|
|
- name: Install Nix
|
2023-09-11 23:13:26 +02:00
|
|
|
uses: cachix/install-nix-action@v23
|
2022-08-22 22:49:13 +02:00
|
|
|
- name: Update flake.lock
|
2024-03-04 19:50:43 +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
|