2023-02-23 10:59:24 +11:00
|
|
|
name: "Update flake inputs"
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
|
|
|
# bump weekly at 6:50
|
|
|
|
- cron: '50 6 * * 1'
|
|
|
|
jobs:
|
|
|
|
update-flake:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v3
|
2023-06-20 09:51:43 +10:00
|
|
|
- uses: cachix/install-nix-action@v22
|
2023-02-23 10:59:24 +11:00
|
|
|
with:
|
|
|
|
extra_nix_config: |
|
|
|
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
2023-02-23 13:21:44 +11:00
|
|
|
- name: "flake: update inputs"
|
2023-04-27 11:08:54 +10:00
|
|
|
uses: DeterminateSystems/update-flake-lock@v19
|
2023-02-23 10:59:24 +11:00
|
|
|
with:
|
2023-02-23 13:21:44 +11:00
|
|
|
pr-title: "flake: update inputs"
|
2023-02-23 10:59:24 +11:00
|
|
|
pr-labels: dependencies
|
2023-02-23 13:21:44 +11:00
|
|
|
commit-msg: "flake: update inputs"
|