mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-23 14:31:55 +03:00
d53f7707b3
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [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>
22 lines
546 B
YAML
22 lines
546 B
YAML
name: update-flake-lock
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '15 18 * * *' # runs daily at 18:15 UTC
|
|
|
|
jobs:
|
|
lockfile:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Install Nix
|
|
uses: DeterminateSystems/nix-installer-action@main
|
|
- name: Update flake.lock
|
|
uses: DavHau/update-flake-lock@main
|
|
with:
|
|
pr-title: "Update nixpkgs"
|
|
pr-labels: dependencies
|
|
inputs: nixpkgs
|
|
flake-dirs: . ./dev-flake
|