generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #193 from cachix/bump-deps
Bump dependencies
- Loading branch information
Showing
16 changed files
with
25,936 additions
and
3,134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
source_url "https://raw.githubusercontent.com/cachix/devenv/d1f7b48e35e6dee421cfd0f51481d17f77586997/direnvrc" "sha256-YBzqskFZxmNb3kYVoKD9ZixoPXJh1C9ZvTLGFRkauZ0=" | ||
source_url "https://raw.githubusercontent.com/cachix/devenv/82c0147677e510b247d8b9165c54f73d32dfd899/direnvrc" "sha256-7u4iDd1nZpxL4tCzmPG0dQgC5V+/44Ba+tHkPob1v2k=" | ||
|
||
use devenv | ||
use devenv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
version: 2 | ||
updates: | ||
|
||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: '00:00' | ||
timezone: UTC | ||
open-pull-requests-limit: 10 | ||
commit-message: | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: "00:00" | ||
timezone: UTC | ||
open-pull-requests-limit: 10 | ||
commit-message: | ||
prefix: "chore" | ||
include: "scope" | ||
include: "scope" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
name: 'Cachix' | ||
description: 'nix-build with the help of caching to Cachix' | ||
author: 'Domen Kožar' | ||
name: "Cachix" | ||
description: "nix-build with the help of caching to Cachix" | ||
author: "Domen Kožar" | ||
inputs: | ||
name: | ||
description: 'Name of a cachix cache to push and pull/substitute' | ||
description: "Name of a cachix cache to push and pull/substitute" | ||
required: true | ||
extraPullNames: | ||
description: 'Comma-separated list of names for extra cachix caches to pull/substitute' | ||
description: "Comma-separated list of names for extra cachix caches to pull/substitute" | ||
authToken: | ||
description: 'Authentication token for Cachix, needed for private cache access or to push using an Auth Token' | ||
description: "Authentication token for Cachix, needed for private cache access or to push using an Auth Token" | ||
signingKey: | ||
description: 'Signing key secret retrieved after creating binary cache on https://cachix.org' | ||
description: "Signing key secret retrieved after creating binary cache on https://cachix.org" | ||
skipPush: | ||
description: 'Set to true to disable pushing build results to the cache' | ||
default: 'false' | ||
description: "Set to true to disable pushing build results to the cache" | ||
default: "false" | ||
pathsToPush: | ||
description: 'Whitespace-separated list of paths to push. Leave empty to push every build result.' | ||
description: "Whitespace-separated list of paths to push. Leave empty to push every build result." | ||
pushFilter: | ||
description: 'Ignored if pathsToPush is set. Regular expression to exclude derivations for the cache push, for example "(-source$|nixpkgs\.tar\.gz$)". Warning: this filter does not guarantee it will not get pushed in case the path is part of the closure of something that will get pushed.' | ||
cachixArgs: | ||
description: 'Extra command-line arguments to pass to cachix. If empty, defaults to -j8' | ||
description: "Extra command-line arguments to pass to cachix. If empty, defaults to -j8" | ||
skipAddingSubstituter: | ||
description: 'Set to true to skip adding cachix cache as a substitute' | ||
default: 'false' | ||
description: "Set to true to skip adding cachix cache as a substitute" | ||
default: "false" | ||
useDaemon: | ||
description: "Push store paths to the cache as they're built with the Cachix Daemon" | ||
default: 'true' | ||
default: "true" | ||
cachixBin: | ||
description: 'Provide a custom path to the cachix binary' | ||
description: "Provide a custom path to the cachix binary" | ||
installCommand: | ||
description: 'Override the default cachix installation method' | ||
description: "Override the default cachix installation method" | ||
branding: | ||
color: 'blue' | ||
icon: 'database' | ||
color: "blue" | ||
icon: "database" | ||
runs: | ||
using: 'node20' | ||
main: 'dist/main/index.js' | ||
post: 'dist/main/index.js' | ||
using: "node20" | ||
main: "dist/main/index.js" | ||
post: "dist/main/index.js" |
Oops, something went wrong.