Update detsys-ts again

This commit is contained in:
Luc Perkins 2024-05-22 13:47:58 -03:00
parent cd7602a5a8
commit a56dda90ad
No known key found for this signature in database
GPG key ID: 16DB1108FB591835
4 changed files with 8 additions and 8 deletions

View file

@ -129,7 +129,7 @@ inputs:
nix-installer-url: nix-installer-url:
description: (deprecated) A URL pointing to a `nix-installer.sh` script description: (deprecated) A URL pointing to a `nix-installer.sh` script
required: false required: false
ci-mode: _internal-strict-mode:
description: Whether to fail when any errors are thrown. Used only to test the Action; do not set this in your own workflows. description: Whether to fail when any errors are thrown. Used only to test the Action; do not set this in your own workflows.
default: false default: false

4
dist/index.js generated vendored
View file

@ -96694,7 +96694,7 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
const external_node_stream_promises_namespaceObject = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("node:stream/promises"); const external_node_stream_promises_namespaceObject = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("node:stream/promises");
;// CONCATENATED MODULE: external "node:zlib" ;// CONCATENATED MODULE: external "node:zlib"
const external_node_zlib_namespaceObject = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("node:zlib"); const external_node_zlib_namespaceObject = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("node:zlib");
;// CONCATENATED MODULE: ./node_modules/.pnpm/github.com+DeterminateSystems+detsys-ts@180884918b85ef67dad81f70b4130eca5268242e_o7ea7dhs7wrsl7wvvt2otnlz3q/node_modules/detsys-ts/dist/index.js ;// CONCATENATED MODULE: ./node_modules/.pnpm/github.com+DeterminateSystems+detsys-ts@ed02129aed8e4d6402d920152652877189bece70_3whmnlhrx56zhgtsjnkrhnutfu/node_modules/detsys-ts/dist/index.js
var __defProp = Object.defineProperty; var __defProp = Object.defineProperty;
var __export = (target, all) => { var __export = (target, all) => {
for (var name in all) for (var name in all)
@ -97184,7 +97184,7 @@ var DetSysAction = class {
this.actionOptions = makeOptionsConfident(actionOptions); this.actionOptions = makeOptionsConfident(actionOptions);
this.exceptionAttachments = /* @__PURE__ */ new Map(); this.exceptionAttachments = /* @__PURE__ */ new Map();
this.nixStoreTrust = "unknown"; this.nixStoreTrust = "unknown";
this.strictMode = getBool("ci-mode"); this.strictMode = getBool("_internal-strict-mode");
this.events = []; this.events = [];
this.client = got_dist_source.extend({ this.client = got_dist_source.extend({
retry: { retry: {

View file

@ -16,7 +16,7 @@ dependencies:
version: 5.1.1 version: 5.1.1
detsys-ts: detsys-ts:
specifier: github:DeterminateSystems/detsys-ts specifier: github:DeterminateSystems/detsys-ts
version: github.com/DeterminateSystems/detsys-ts/180884918b85ef67dad81f70b4130eca5268242e version: github.com/DeterminateSystems/detsys-ts/ed02129aed8e4d6402d920152652877189bece70
string-argv: string-argv:
specifier: ^0.3.2 specifier: ^0.3.2
version: 0.3.2 version: 0.3.2
@ -5429,10 +5429,10 @@ packages:
engines: { node: ">=10" } engines: { node: ">=10" }
dev: true dev: true
github.com/DeterminateSystems/detsys-ts/180884918b85ef67dad81f70b4130eca5268242e: github.com/DeterminateSystems/detsys-ts/ed02129aed8e4d6402d920152652877189bece70:
resolution: resolution:
{ {
tarball: https://codeload.github.com/DeterminateSystems/detsys-ts/tar.gz/180884918b85ef67dad81f70b4130eca5268242e, tarball: https://codeload.github.com/DeterminateSystems/detsys-ts/tar.gz/ed02129aed8e4d6402d920152652877189bece70,
} }
name: detsys-ts name: detsys-ts
version: 1.0.0 version: 1.0.0

View file

@ -51,7 +51,7 @@ class NixInstallerAction extends DetSysAction {
kvm: boolean; kvm: boolean;
githubServerUrl: string | null; githubServerUrl: string | null;
githubToken: string | null; githubToken: string | null;
forceDockerShim: boolean | null; forceDockerShim: boolean;
init: string | null; init: string | null;
localRoot: string | null; localRoot: string | null;
logDirectives: string | null; logDirectives: string | null;
@ -71,7 +71,7 @@ class NixInstallerAction extends DetSysAction {
planner: string | null; planner: string | null;
reinstall: boolean; reinstall: boolean;
startDaemon: boolean; startDaemon: boolean;
trustRunnerUser: boolean | null; trustRunnerUser: boolean;
runnerOs: string | undefined; runnerOs: string | undefined;
constructor() { constructor() {