mirror of
https://github.com/Mic92/sops-nix.git
synced 2025-03-16 13:38:20 +00:00
20 lines
529 B
YAML
20 lines
529 B
YAML
|
name: "Update flakes"
|
||
|
on:
|
||
|
repository_dispatch:
|
||
|
workflow_dispatch:
|
||
|
schedule:
|
||
|
- cron: '51 2 * * 0'
|
||
|
jobs:
|
||
|
createPullRequest:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: Install Nix
|
||
|
uses: cachix/install-nix-action@v17
|
||
|
with:
|
||
|
extra_nix_config: |
|
||
|
experimental-features = nix-command flakes
|
||
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
||
|
- name: Update flake.lock
|
||
|
uses: DeterminateSystems/update-flake-lock@v9
|