nyxexprs/.github/workflows/update-flake.yml
dependabot[bot] 2d7301f92a
build(deps): bump cachix/install-nix-action from 31.8.4 to 31.9.0
Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 31.8.4 to 31.9.0.
- [Release notes](https://github.com/cachix/install-nix-action/releases)
- [Changelog](https://github.com/cachix/install-nix-action/blob/master/RELEASE.md)
- [Commits](https://github.com/cachix/install-nix-action/compare/v31.8.4...v31.9.0)

---
updated-dependencies:
- dependency-name: cachix/install-nix-action
  dependency-version: 31.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-15 01:06:17 +00:00

46 lines
952 B
YAML

name: Update flake
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 0" # weekly
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.9.0
- uses: cachix/cachix-action@v16
with:
name: nyx
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- name: Update flake
run: nix flake update
- uses: stefanzweifel/git-auto-commit-action@v6
with:
commit_message: "[CI]: update flake inputs"
push_options: "--force"
commit_user_name: GitHub Actions
build:
needs: update
uses: ./.github/workflows/build.yml
secrets: inherit