2024-02-26 15:53:12 +01:00
|
|
|
name: Update Nix Deps
|
|
|
|
on:
|
|
|
|
workflow_dispatch: # allows manual triggering
|
|
|
|
schedule:
|
|
|
|
- cron: '0 0 1 * *' # runs monthly on the first day of the month at 00:00
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lockfile:
|
|
|
|
runs-on: ubuntu-latest
|
2024-06-03 12:03:52 +02:00
|
|
|
if: github.repository == 'atuinsh/atuin'
|
2024-02-26 15:53:12 +01:00
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2024-07-15 11:37:35 +02:00
|
|
|
uses: actions/checkout@v4
|
2024-02-26 15:53:12 +01:00
|
|
|
- name: Install Nix
|
|
|
|
uses: DeterminateSystems/nix-installer-action@main
|
|
|
|
- name: Update flake.lock
|
|
|
|
uses: DeterminateSystems/update-flake-lock@main
|
|
|
|
with:
|
|
|
|
pr-title: "chore(deps): update flake.lock"
|
|
|
|
pr-labels: |
|
2024-06-03 12:03:52 +02:00
|
|
|
dependencies
|