Skip to content

Update to latest version, and update flake inputs #69

Update to latest version, and update flake inputs

Update to latest version, and update flake inputs #69

Workflow file for this run

name: Update to latest version, and update flake inputs
on:
schedule:
- cron: "0 4 * * *"
workflow_dispatch:
jobs:
update:
name: Update flake inputs and browser
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
token: ${{ secrets.PAT }}
- name: Check flake inputs
uses: DeterminateSystems/flake-checker-action@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Check for update and perform update
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
chmod +x ./commit-update.nu
./commit-update.nu
nix flake update --commit-lock-file
git push