Update Flake Lock #2
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 Lock | ||
on: | ||
schedule: | ||
- cron: '0 0 * * *' # every day at midnight | ||
jobs: | ||
check-build: | ||
uses: ./.github/workflows/build-template.yml | ||
Check failure on line 9 in .github/workflows/update-flake-lock.yaml GitHub Actions / .github/workflows/update-flake-lock.yamlInvalid workflow file
|
||
with: | ||
template: 'starter' | ||
arch: 'x86_64-linux' | ||
update-flake: | ||
runs-on: ubuntu-latest | ||
needs: check-build | ||
if: ${{ needs.check-build.outputs.build-success == 'true' }} | ||
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: 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 |