Compare commits

...

2 Commits

2 changed files with 10 additions and 2 deletions

View File

@ -82,7 +82,7 @@ jobs:
steps:
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4
- uses: EmbarkStudios/cargo-deny-action@b01e7a8cfb1f496c52d77361e84c1840d8246393 # v1
- uses: EmbarkStudios/cargo-deny-action@3f4a782664881cf5725d0ffd23969fcce89fd868 # v1
with:
command: check ${{ matrix.checks }}

View File

@ -2,6 +2,12 @@ name: Update flake.lock
on:
workflow_call:
inputs:
inputs:
description: Space separated list of flake inputs to be updated (defaults to all)
type: string
default: ""
required: false
secrets:
github-token:
required: true
@ -21,8 +27,10 @@ jobs:
- name: Update flake.lock and push
shell: bash
env:
INPUTS: ${{ inputs.inputs }}
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "noreply@github.com"
nix flake update --commit-lock-file
nix flake update ${INPUTS} --commit-lock-file
git push