mirror of
https://github.com/foo-dogsquared/nix-module-wrapper-manager-fds.git
synced 2025-01-30 22:57:58 +00:00
1bb6e45eb3
Some checks failed
Bumps [DeterminateSystems/nix-installer-action](https://github.com/determinatesystems/nix-installer-action) from 15 to 16. - [Release notes](https://github.com/determinatesystems/nix-installer-action/releases) - [Commits](https://github.com/determinatesystems/nix-installer-action/compare/v15...v16) --- 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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
31 lines
908 B
YAML
31 lines
908 B
YAML
name: Update Nix dependencies
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# This is done on a biweekly basis.
|
|
- cron: '0 0 1,15 * *'
|
|
|
|
jobs:
|
|
update-nix-deps:
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: DeterminateSystems/nix-installer-action@v16
|
|
- run: nix develop --command make update
|
|
- id: datetime
|
|
run: |
|
|
echo "DATETIME=$(date '+%F')" >> "$GITHUB_OUTPUT"
|
|
- name: Create pull request
|
|
uses: peter-evans/create-pull-request@v7
|
|
with:
|
|
title: "ci: update lockfile as of ${{ steps.datetime.outputs.DATETIME }}"
|
|
delete-branch: true
|
|
branch: update-npins-lockfile
|
|
body: ""
|
|
commit-message: |
|
|
npins: update lockfile as of ${{ steps.datetime.outputs.DATETIME }}
|
|
labels: npins-update
|