We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
nix flake update
1 parent fda4596 commit 3245275Copy full SHA for 3245275
.github/workflows/nix-flake-update.yml
@@ -0,0 +1,22 @@
1
+name: update-flake-lock
2
+on:
3
+ workflow_dispatch:
4
+ schedule:
5
+ - cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
6
+
7
+jobs:
8
+ lockfile:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout repository
12
+ uses: actions/checkout@v4
13
+ - name: Install Nix
14
+ uses: DeterminateSystems/nix-installer-action@main
15
+ - name: Update flake.lock
16
+ uses: DeterminateSystems/update-flake-lock@main
17
+ with:
18
+ pr-title: "nix: update flake.lock"
19
+ pr-labels: |
20
+ nix
21
+ pr-reviewers: philiptaron,SomeoneSerge
22
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments