mirror of
https://github.com/callumio/nixfiles.git
synced 2025-12-17 11:39:19 +00:00
Merge branch 'main' into dependabot/github_actions/main/DeterminateSystems/magic-nix-cache-action-7
This commit is contained in:
commit
906f01a73c
14 changed files with 212 additions and 48 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
|||
with:
|
||||
tool-cache: true
|
||||
- uses: DeterminateSystems/magic-nix-cache-action@v7
|
||||
- uses: cachix/cachix-action@v14
|
||||
- uses: cachix/cachix-action@v15
|
||||
with:
|
||||
name: callumio-public
|
||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||
|
|
|
|||
22
.github/workflows/update-flake.yml
vendored
Normal file
22
.github/workflows/update-flake.yml
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
name: Update flake inputs
|
||||
on:
|
||||
schedule:
|
||||
# Sunday and Wednesday
|
||||
- cron: "51 3 * * 0,3"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
update:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Install Nix
|
||||
uses: cachix/install-nix-action@v27
|
||||
- name: Update flake.lock
|
||||
uses: DeterminateSystems/update-flake-lock@v23
|
||||
with:
|
||||
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
||||
pr-labels: |
|
||||
dependencies
|
||||
automated
|
||||
Loading…
Add table
Add a link
Reference in a new issue