nyxexprs/.github/workflows/nix.yml
dependabot[bot] 6bd2fcd726
Some checks failed
build.yml / build(deps): bump cachix/cachix-action from 16 to 17 (push) Failing after 0s
Run Checks / check (NIXPKGS_ALLOW_INSECURE=1 NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1 nix flake check --accept-flake-config) (push) Waiting to run
Run Checks / check (nix run .#alejandra-custom -- -c . -e ./npins) (push) Waiting to run
Run Checks / build (push) Blocked by required conditions
nix.yml / build(deps): bump cachix/cachix-action from 16 to 17 (push) Failing after 0s
build(deps): bump cachix/cachix-action from 16 to 17
Bumps [cachix/cachix-action](https://github.com/cachix/cachix-action) from 16 to 17.
- [Release notes](https://github.com/cachix/cachix-action/releases)
- [Commits](https://github.com/cachix/cachix-action/compare/v16...v17)

---
updated-dependencies:
- dependency-name: cachix/cachix-action
  dependency-version: '17'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-13 03:34:58 +00:00

30 lines
543 B
YAML

name: Nix
on:
workflow_call:
inputs:
command:
required: true
type: string
secrets:
CACHIX_AUTH_TOKEN:
required: false
permissions:
contents: read
id-token: write
jobs:
nix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: "Install Nix"
uses: cachix/install-nix-action@v31.10.4
- uses: cachix/cachix-action@v17
with:
name: nyx
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- run: ${{ inputs.command }}