nixos/.github/workflows/flake-update.yml
dependabot[bot] 02a40b0108
Bump actions/checkout from 3.6.0 to 4.0.0 (#62)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.6.0 to 4.0.0.
- [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/v3.6.0...v4.0.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  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>
2023-09-05 10:01:11 +00:00

24 lines
621 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.0.0
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v4
- 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 }}