mirror of
https://github.com/NotAShelf/nyxexprs.git
synced 2026-04-15 06:43:56 +00:00
Some checks failed
build.yml / build(deps): bump cachix/cachix-action from 16 to 17 (push) Failing after 0s
nix.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) Has been cancelled
Run Checks / check (nix run .#alejandra-custom -- -c . -e ./npins) (push) Has been cancelled
Run Checks / build (push) Has been cancelled
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>
46 lines
960 B
YAML
46 lines
960 B
YAML
name: Update packages
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 0 * * *" # daily
|
|
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
|
|
jobs:
|
|
update:
|
|
if: github.repository == 'notashelf/nyxexprs'
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
with:
|
|
token: "${{ secrets.GH_TOKEN}}"
|
|
|
|
- name: "Install Nix"
|
|
uses: cachix/install-nix-action@v31.10.4
|
|
|
|
- uses: cachix/cachix-action@v17
|
|
with:
|
|
name: nyx
|
|
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
|
|
|
|
- name: Update npins
|
|
run: nix run nixpkgs#npins update
|
|
|
|
- uses: stefanzweifel/git-auto-commit-action@v6
|
|
with:
|
|
commit_message: "[CI]: update npins"
|
|
push_options: "--force"
|
|
commit_user_name: GitHub Actions
|
|
|
|
build:
|
|
needs: update
|
|
uses: ./.github/workflows/build.yml
|
|
secrets: inherit
|