Skip to content

update-sources

update-sources #1526

# This file was autogenerated by actions.nix. Do not edit it manually.
# To make changes, edit the workflow definition in your flake's actions-nix configuration
# (typically under flake.actions-nix.workflows.".github/workflows/update-sources.yaml") and run:
# nix run .#render-workflows
# Or commit to trigger the pre-commit hook if enabled.
concurrency:
cancel-in-progress: true
group: update-sources
jobs:
update-sources:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v30
with:
nix_path: nixpkgs=channel:nixos-unstable
- env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: Run update script
run: |-
chmod +x ./modules/repository/ci/run-update-all-sources.sh
./modules/repository/ci/run-update-all-sources.sh
- name: Run nix flake check
run: nix flake check
- uses: EndBug/add-and-commit@v9
with:
add: modules/**/sources.json
default_author: github_actions
message: Update package versions
name: update-sources
'on':
push:
branches:
- main
schedule:
- cron: 0 0 * * *
workflow_dispatch: {}