Skip to content

update-flake-lock

update-flake-lock #98

Workflow file for this run

name: update-flake-lock
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch: # allows manual triggering
schedule:
- cron: '5 4 * * 5' # runs weekly on Friday morning at 04:05
jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v26
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@v21
with:
pr-title: Update flake.lock
pr-labels: |
dependencies
automated
token: ${{ secrets.PIPELINE_TOKEN }}