30 lines
766 B
YAML
Raw Permalink Normal View History

2024-04-13 10:52:49 +02:00
name: update-flake-lock
on:
workflow_dispatch:
schedule:
- cron: '0 2 * * 6,7'
env:
USER: "runner"
jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
2024-04-19 00:01:49 +00:00
uses: actions/checkout@v4
2024-04-13 10:52:49 +02:00
- name: Install nix
uses: DeterminateSystems/nix-installer-action@v16
2024-04-13 10:52:49 +02:00
with:
github-token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
extra_nix_config: |
experimental-features = nix-command flakes
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@v24
2024-04-13 10:52:49 +02:00
with:
token: ${{ secrets.GT_TOKEN_FOR_UPDATES }}
pr-title: "[chore] Update flake.lock"
pr-labels: |
dependencies
automated