Skip to content

Commit

Permalink
add a ci workflow to update inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
liesnikov committed Apr 15, 2024
1 parent b053cac commit c03cb68
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/flake-lock-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "Update all dependencies in flake.lock"
on:
workflow_dispatch: # allows manual triggering

jobs:
lockfile:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v1
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@v20
with:
pr-title: "Update flake.lock"

0 comments on commit c03cb68

Please sign in to comment.