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>
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
name: Dependencies
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * 0'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
contents: write
|
|
|
|
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
|
|
|
|
- run: nix -vL run --show-trace .#update
|
|
|
|
- id: create-pr
|
|
uses: peter-evans/create-pull-request@v6
|
|
with:
|
|
branch: update_zmk_config_deps
|
|
delete-branch: true
|
|
committer: 'github-actions[bot] <github-actions[bot]@users.noreply.github.com>'
|
|
author: 'github-actions[bot] <github-actions[bot]@users.noreply.github.com>'
|
|
commit-message: 'config,nix: update deps'
|
|
title: 'config,nix: update deps'
|
|
labels: 'dependencies'
|
|
body: |
|
|
Automated bump of ZMK dependencies
|
|
|
|
- uses: benc-uk/workflow-dispatch@v1
|
|
if: ${{ contains(fromJSON('["created", "updated"]'), steps.create-pr.outputs.pull-request-operation) }}
|
|
with:
|
|
workflow: ci.yml
|
|
ref: refs/heads/update_zmk_config_deps
|