mirror of
https://github.com/dwinkler1/nvimConfig.git
synced 2026-08-22 17:43:13 -04:00
Bumps [DeterminateSystems/determinate-nix-action](https://github.com/determinatesystems/determinate-nix-action) from 3 to 3.21.8. - [Release notes](https://github.com/determinatesystems/determinate-nix-action/releases) - [Commits](https://github.com/determinatesystems/determinate-nix-action/compare/v3...v3.21.8) --- updated-dependencies: - dependency-name: DeterminateSystems/determinate-nix-action dependency-version: 3.21.8 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
32 lines
973 B
YAML
32 lines
973 B
YAML
name: update-flake-lock
|
|
|
|
on:
|
|
workflow_dispatch: # allows manual triggering
|
|
schedule:
|
|
- cron: '0 3 * * *'
|
|
|
|
jobs:
|
|
lockfile1:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v7
|
|
- uses: wimpysworld/nothing-but-nix@main
|
|
with:
|
|
hatchet-protocol: 'carve'
|
|
- name: Install Determinate Nix
|
|
uses: DeterminateSystems/determinate-nix-action@v3.21.8
|
|
- uses: cachix/cachix-action@v17
|
|
with:
|
|
name: rde
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
extraPullNames: rstats-on-nix, nix-community
|
|
- name: Update flake.lock
|
|
uses: DeterminateSystems/update-flake-lock@v28
|
|
with:
|
|
token: ${{ secrets.GH_TOKEN }}
|
|
branch: update
|
|
pr-title: "Update flake.lock" # Title of PR to be created
|
|
pr-labels: | # Labels to be set on the PR
|
|
dependencies
|
|
automated
|