Nix Flake Update #235
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: Nix Flake Update | |
on: | |
schedule: | |
- cron: 0 8 * * * # 3:00 AM CST | |
jobs: | |
check: | |
runs-on: ubuntu-22.04 | |
permissions: | |
id-token: write | |
contents: write | |
pages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- uses: DeterminateSystems/flake-checker-action@main | |
- name: Update Flake | |
run: | | |
nix flake update | |
nix flake check | |
# - name: Commit and Push Changes | |
# run: | | |
# git config --global user.email "[email protected]" | |
# git config --global user.name "GitHub Actions" | |
# git add flake.lock | |
# git commit -m "Update flake.lock" | |
# git push |