mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-18 01:42:34 +00:00
fix(refactor): use named imports (#879)
Allows better tree shaking while bundling.
This commit is contained in:
parent
5343762d53
commit
4d91b7f286
7 changed files with 77 additions and 36 deletions
|
|
@ -1,21 +1,31 @@
|
|||
import type { Input } from './input';
|
||||
import { warning } from '@actions/core';
|
||||
|
||||
class Docker {
|
||||
export class Docker {
|
||||
private static readonly image = 'ghcr.io/renovatebot/renovate';
|
||||
private static readonly version = 'latest';
|
||||
|
||||
private readonly dockerImage: string;
|
||||
private readonly fullTag: string;
|
||||
|
||||
constructor(input: Input) {
|
||||
const tag = input.getVersion();
|
||||
let image = input.getDockerImage();
|
||||
let version = input.getVersion();
|
||||
|
||||
this.dockerImage = input.getDockerImage() ?? Docker.image;
|
||||
this.fullTag = tag ?? 'latest';
|
||||
if (!image) {
|
||||
warning(`No Docker image specified, using ${Docker.image}`);
|
||||
image = Docker.image;
|
||||
}
|
||||
if (!version) {
|
||||
warning(`No Docker version specified, using ${Docker.version}`);
|
||||
version = Docker.version;
|
||||
}
|
||||
|
||||
this.dockerImage = image;
|
||||
this.fullTag = version;
|
||||
}
|
||||
|
||||
image(): string {
|
||||
return `${this.dockerImage}:${this.fullTag}`;
|
||||
}
|
||||
}
|
||||
|
||||
export default Docker;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import * as core from '@actions/core';
|
||||
import Input from './input';
|
||||
import Renovate from './renovate';
|
||||
import { Input } from './input';
|
||||
import { Renovate } from './renovate';
|
||||
import { setFailed } from '@actions/core';
|
||||
|
||||
async function run(): Promise<void> {
|
||||
try {
|
||||
|
|
@ -10,7 +10,7 @@ async function run(): Promise<void> {
|
|||
await renovate.runDockerContainer();
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
core.setFailed(error as Error);
|
||||
setFailed(error as Error);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
31
src/input.ts
31
src/input.ts
|
|
@ -1,12 +1,12 @@
|
|||
import * as core from '@actions/core';
|
||||
import { getInput } from '@actions/core';
|
||||
import path from 'path';
|
||||
|
||||
interface EnvironmentVariable {
|
||||
export interface EnvironmentVariable {
|
||||
key: string;
|
||||
value: string;
|
||||
}
|
||||
|
||||
class Input {
|
||||
export class Input {
|
||||
readonly options = {
|
||||
envRegex:
|
||||
/^(?:RENOVATE_\w+|LOG_LEVEL|GITHUB_COM_TOKEN|NODE_OPTIONS|(?:HTTPS?|NO)_PROXY|(?:https?|no)_proxy)$/,
|
||||
|
|
@ -27,7 +27,7 @@ class Input {
|
|||
private readonly _configurationFile: Readonly<EnvironmentVariable>;
|
||||
|
||||
constructor() {
|
||||
const envRegexInput = core.getInput('env-regex');
|
||||
const envRegexInput = getInput('env-regex');
|
||||
const envRegex = envRegexInput
|
||||
? new RegExp(envRegexInput)
|
||||
: this.options.envRegex;
|
||||
|
|
@ -61,41 +61,39 @@ class Input {
|
|||
}
|
||||
|
||||
getDockerImage(): string | null {
|
||||
return core.getInput('renovate-image') || null;
|
||||
return getInput('renovate-image') || null;
|
||||
}
|
||||
|
||||
getVersion(): string | null {
|
||||
const version = core.getInput('renovate-version');
|
||||
return !!version && version !== '' ? version : null;
|
||||
return getInput('renovate-version') || null;
|
||||
}
|
||||
|
||||
mountDockerSocket(): boolean {
|
||||
return core.getInput('mount-docker-socket') === 'true';
|
||||
return getInput('mount-docker-socket') === 'true';
|
||||
}
|
||||
|
||||
dockerSocketHostPath(): string {
|
||||
return core.getInput('docker-socket-host-path') || '/var/run/docker.sock';
|
||||
return getInput('docker-socket-host-path') || '/var/run/docker.sock';
|
||||
}
|
||||
|
||||
getDockerCmdFile(): string | null {
|
||||
const cmdFile = core.getInput('docker-cmd-file');
|
||||
const cmdFile = getInput('docker-cmd-file');
|
||||
return !!cmdFile && cmdFile !== '' ? path.resolve(cmdFile) : null;
|
||||
}
|
||||
|
||||
getDockerUser(): string | null {
|
||||
return core.getInput('docker-user') || null;
|
||||
return getInput('docker-user') || null;
|
||||
}
|
||||
|
||||
getDockerVolumeMounts(): string[] {
|
||||
return core
|
||||
.getInput('docker-volumes')
|
||||
return getInput('docker-volumes')
|
||||
.split(';')
|
||||
.map((v) => v.trim())
|
||||
.filter((v) => !!v);
|
||||
}
|
||||
|
||||
getDockerNetwork(): string {
|
||||
return core.getInput('docker-network');
|
||||
return getInput('docker-network');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -117,7 +115,7 @@ class Input {
|
|||
env: string,
|
||||
optional: boolean,
|
||||
): EnvironmentVariable {
|
||||
const fromInput = core.getInput(input);
|
||||
const fromInput = getInput(input);
|
||||
const fromEnv = this._environmentVariables.get(env);
|
||||
|
||||
if (fromInput === '' && fromEnv === undefined && !optional) {
|
||||
|
|
@ -136,6 +134,3 @@ class Input {
|
|||
return { key: env, value: fromEnv !== undefined ? fromEnv : '' };
|
||||
}
|
||||
}
|
||||
|
||||
export default Input;
|
||||
export { EnvironmentVariable, Input };
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
import Docker from './docker';
|
||||
import { Docker } from './docker';
|
||||
import { Input } from './input';
|
||||
import { exec } from '@actions/exec';
|
||||
import fs from 'fs/promises';
|
||||
import path from 'path';
|
||||
|
||||
class Renovate {
|
||||
export class Renovate {
|
||||
static dockerGroupRegex = /^docker:x:(?<groupId>[1-9][0-9]*):/m;
|
||||
private configFileMountDir = '/github-action';
|
||||
|
||||
|
|
@ -126,5 +126,3 @@ class Renovate {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default Renovate;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue