Skip to content

update-flake-lock #1066

update-flake-lock

update-flake-lock #1066

Workflow file for this run

name: update-flake-lock
on:
workflow_dispatch: # allows manual triggering
schedule:
- cron: '30 3 * * *'
jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Install Nix
uses: cachix/install-nix-action@v31
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- name: Update flake.lock
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
nix flake update --commit-lock-file --commit-lockfile-summary "flake.lock: Update"
- name: Update plugins.json
run: |
nix run .#update
git add plugins.json && git commit -m 'update plugins.json' || true
- name: Build flake
run: |
nix build --show-trace
- name: Push to main
run: |
git push