Skip to content

Commit

Permalink
ci: create PR to udpate flake.lock every saturday (#4372)
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmay authored Nov 13, 2024
1 parent 24fa416 commit ddfc979
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/update-flack-lock.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: update-flake-lock
on:
workflow_dispatch:
schedule:
# runs weekly on Saturday at 00:00 UTC time
- cron: "0 0 * * 6"

jobs:
lockfile:
runs-on: ubuntu-latest
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: "Update flake.lock"
- name: Print PR number
run: echo Pull request number is ${{ steps.update.outputs.pull-request-number }}.

0 comments on commit ddfc979

Please sign in to comment.