nixos/.github/workflows/flake-update.yml
dependabot[bot] 27f493e466
Bump actions/checkout from 4.1.4 to 4.1.5 (#322)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.4 to 4.1.5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4.1.4...v4.1.5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-07 09:26:45 +00:00

24 lines
622 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.5
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v10
- name: update
uses: DeterminateSystems/update-flake-lock@v20
with:
pr-title: "Update flake.lock"
- name: merge
run: |
gh pr merge ${{ steps.update.outputs.pull-request-number }} --squash --delete-branch
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}