Skip to content
on:
# Allows to run this workflow manually from the Actions tab
workflow_dispatch:
push:
paths: deps.edn
jobs:
ci:
name: Update deps-lock
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Update deps-lock.json
run: nix run github:jlesquembre/clj-nix#deps-lock
- name: Commit changes
run: |
git config user.name "sohalt"
git config user.email '[email protected]'
git add deps-lock.json
git commit -m "Update deps-lock.json"
git push