Update Flake Lock #3
This file contains hidden or 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: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 0 1 * *' | |
| jobs: | |
| update-flake-lock: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| - name: Install Nix | |
| uses: ./.github/actions/nix-install-ephemeral | |
| - name: Update critical flake inputs | |
| run: | | |
| nix flake update \ | |
| nixpkgs \ | |
| rust-overlay \ | |
| multigres \ | |
| nix-eval-jobs | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| commit-message: "chore: update flake.lock (monthly)" | |
| title: "chore: update flake.lock (monthly)" | |
| body: | | |
| Automated monthly update of critical flake inputs: | |
| - `nixpkgs` (nixos-unstable channel) | |
| - `rust-overlay` | |
| - `multigres` | |
| - `nix-eval-jobs` | |
| branch: auto-update-flake-lock | |
| base: develop | |
| labels: | | |
| dependencies | |
| automated |