Skip to content

Update Flake Lock

Update Flake Lock #7

name: Update Flake Lock
on:
schedule:
- cron: '0 23 * * 0' # Every Sunday at 11:00 PM
jobs:
check-build:
uses: ./.github/workflows/build-template.yml
with:
template: 'starter'
arch: 'x86_64-linux'
update-flake:
runs-on: ubuntu-latest
needs: check-build
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Setup Cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Check flake
run: |
mkdir -p my-config && cd my-config
nix flake --extra-experimental-features 'nix-command flakes' init -t github:dustinlyons/nixos-config#starter
nix flake check
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@main
with:
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
pr-title: "Update flake.lock"
pr-labels: |
dependencies
automated