nixos/.github/workflows/flake-update.yml
dependabot[bot] b8066fba18
Bump DeterminateSystems/update-flake-lock from 21 to 22 (#357)
Bumps [DeterminateSystems/update-flake-lock](https://github.com/determinatesystems/update-flake-lock) from 21 to 22.
- [Release notes](https://github.com/determinatesystems/update-flake-lock/releases)
- [Commits](https://github.com/determinatesystems/update-flake-lock/compare/v21...v22)

---
updated-dependencies:
- dependency-name: DeterminateSystems/update-flake-lock
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-04 10:13:09 +00:00

28 lines
722 B
YAML

name: flake-update
on:
workflow_dispatch:
schedule:
- cron: '0 5 * * *'
jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.6
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v11
- name: Update flake lock
id: update
uses: DeterminateSystems/update-flake-lock@v22
with:
pr-title: "Update flake.lock"
pr-labels: |
dependencies
automated
- name: merge
run: |
gh pr merge ${{ steps.update.outputs.pull-request-number }} --squash --delete-branch
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}