f9808fc2ad
Bumps [DeterminateSystems/nix-installer-action](https://github.com/determinatesystems/nix-installer-action) from 12 to 13. - [Release notes](https://github.com/determinatesystems/nix-installer-action/releases) - [Commits](https://github.com/determinatesystems/nix-installer-action/compare/v12...v13) --- updated-dependencies: - dependency-name: DeterminateSystems/nix-installer-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
33 lines
806 B
YAML
33 lines
806 B
YAML
name: Flake
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * 0'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update:
|
|
name: Update
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: write
|
|
contents: write
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: DeterminateSystems/nix-installer-action@v13
|
|
|
|
- id: update-flake-lock
|
|
uses: DeterminateSystems/update-flake-lock@v23
|
|
with:
|
|
commit-msg: 'flake: update inputs'
|
|
pr-title: 'flake: update inputs'
|
|
pr-labels: 'dependencies'
|
|
|
|
- uses: benc-uk/workflow-dispatch@v1
|
|
if: ${{ contains(fromJSON('["created", "updated"]'), steps.update-flake-lock.outputs.pull-request-operation) }}
|
|
with:
|
|
workflow: ci.yml
|
|
ref: refs/heads/update_flake_lock_action
|