nh/.github/workflows/update.yaml
dependabot[bot] 5dd7b00ffa
chore(deps): bump peter-evans/create-pull-request from 7 to 8
Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 7 to 8.
- [Release notes](https://github.com/peter-evans/create-pull-request/releases)
- [Commits](https://github.com/peter-evans/create-pull-request/compare/v7...v8)

---
updated-dependencies:
- dependency-name: peter-evans/create-pull-request
  dependency-version: '8'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-10 16:23:52 +00:00

40 lines
936 B
YAML

name: "Update NH"
on:
workflow_dispatch:
schedule:
- cron: "0 4 1 * *"
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: cachix/install-nix-action@master
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v6
name: Checkout
- name: Update
run: |
nix flake update
eval "$(nix print-dev-env)"
cargo update
./fix.sh
- name: Create Pull Request
uses: peter-evans/create-pull-request@v8
with:
token: '${{ secrets.PAT }}'
title: "build: bump dependencies"
committer: GitHub <noreply@github.com>
author: GitHub <noreply@github.com>
commit-message: |
build: bump dependencies
Co-authored-by: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
branch: update
# branch-suffix: timestamp
delete-branch: true