Files
infrastructure/.gitea/workflows/update-flake-lock.yml
kalipso 5ca39f9598
Some checks failed
Evaluate Hydra Jobs / eval-hydra-jobs (push) Successful in 4m10s
Update flakes / update-flake-lock (push) Failing after 5m6s
[actions] update: add api token
i try this to prevent api limit
2024-10-24 11:10:35 +02:00

29 lines
709 B
YAML

name: "Update flakes"
on:
push:
repository_dispatch:
workflow_dispatch:
schedule:
- cron: '38 0 * * 2'
permissions:
pull-requests: write
contents: write
jobs:
update-flake-lock:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies for Nix setup action
run: |
apt update -y
apt install sudo -y
- name: Install Nix
uses: cachix/install-nix-action@v30
with:
github_access_token: ${{ secrets.API_TOKEN }}
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@v24
with:
pr-labels: | # Labels to be set on the PR
autoupdate