Skip to content

Commit

Permalink
add flake update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
liesnikov committed Jan 17, 2024
1 parent 19ba40a commit b97f330
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 b97f330

Please sign in to comment.