Update Flake Packages ❄️ #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Update Flake Packages ❄️" | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" # https://crontab.guru/#0_0_*_*_* | |
jobs: | |
updateFlakePackages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v9 | |
with: | |
extra-conf: | | |
accept-flake-config = true | |
allow-import-from-derivation = true | |
- name: Run the Magic Nix Cache | |
uses: DeterminateSystems/magic-nix-cache-action@v2 | |
- name: Update flake packages | |
uses: selfuryon/nix-update-action@v1.0.1 | |
with: | |
blacklist: "" |