mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.6 to 4.1.7. - [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.6...v4.1.7) --- 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>
28 lines
722 B
YAML
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.7
|
|
- name: Install Nix
|
|
uses: DeterminateSystems/nix-installer-action@v12
|
|
- 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 }}
|
|
|