name: update all inputs on: schedule: # run every saturday - cron: "0 0 * * 6" workflow_dispatch: permissions: read-all jobs: update-lock: runs-on: ubuntu-latest steps: - name: checkout repo uses: actions/checkout@v3 - name: install nix uses: cachix/install-nix-action@v20 with: github_access_token: ${{ secrets.GITHUB_TOKEN }} - name: update all inputs uses: DeterminateSystems/update-flake-lock@v19 with: commit-msg: "flake: update all inputs" pr-title: "flake: update all inputs" pr-body: | Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action. bors r+ nix-options: "--accept-flake-config" token: ${{ secrets.FLAKE_UPDATE }}