-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (33 loc) · 1.06 KB
/
update-lockfile.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: "Update Flake Lockfile"
on:
workflow_dispatch:
schedule:
- cron: "0 8 * * 1,3,5"
jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v12
with:
extra-conf: |
fallback = true
connect-timeout = 30
experimental-features = nix-command flakes
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@v23
with:
pr-title: "flake: update lockfile"
pr-labels: |
dependencies
automated
git-author-name: soopyc [bot]
git-author-email: [email protected]
git-committer-name: soopyc [bot]
git-committer-email: [email protected]
sign-commits: true
gpg-fingerprint: ${{ vars.GPG_FINGERPRINT }}
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }}