Update flake.lock #11
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: | |
workflow_dispatch: | |
schedule: | |
# runs weekly on Saturday at 00:00 UTC time | |
- cron: "0 0 * * 6" | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
lockfile: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install Nix | |
uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 #v30 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Update flake.lock | |
id: update | |
uses: DeterminateSystems/update-flake-lock@a2bbe0274e3a0c4194390a1e445f734c597ebc37 #v24 | |
with: | |
pr-title: "build(deps): update flake.lock" | |
pr-labels: | | |
dependencies | |
automated | |
- name: Print PR number | |
run: echo Pull request number is ${{ steps.update.outputs.pull-request-number }}. |