mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
ae2cc6a88c
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [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...v4) --- 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>
20 lines
511 B
YAML
20 lines
511 B
YAML
name: Update flake inputs
|
|
on:
|
|
schedule:
|
|
# Update every Sunday and Wednesday
|
|
- cron: "51 3 * * 0,3"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Install Nix
|
|
uses: cachix/install-nix-action@v23
|
|
- name: Update flake.lock
|
|
uses: DeterminateSystems/update-flake-lock@v20
|
|
with:
|
|
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
|
pr-labels: dependencies
|