51554830dc
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>
25 lines
607 B
YAML
25 lines
607 B
YAML
name: Flake Lock Updater
|
|
|
|
on:
|
|
schedule:
|
|
# Pi o'clock
|
|
- cron: "0 0 * * 0"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
lock-updater:
|
|
name: Flake Lock Updater
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: DeterminateSystems/nix-installer-action@v4
|
|
- uses: DeterminateSystems/magic-nix-cache-action@v2
|
|
- uses: DeterminateSystems/update-flake-lock@v20
|
|
with:
|
|
pr-title: "chore: update flake.lock"
|
|
# Labels to be set on the PR
|
|
pr-labels: |
|
|
dependencies
|
|
automated
|