mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-16 08:52:35 +00:00
build: compile as esm (#888)
This commit is contained in:
parent
4a407be28a
commit
e8fc25c747
8 changed files with 14 additions and 7 deletions
|
|
@ -1,5 +1,5 @@
|
|||
import { getInput } from '@actions/core';
|
||||
import path from 'path';
|
||||
import path from 'node:path';
|
||||
|
||||
export interface EnvironmentVariable {
|
||||
key: string;
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
import { Docker } from './docker';
|
||||
import { Input } from './input';
|
||||
import { exec } from '@actions/exec';
|
||||
import fs from 'fs/promises';
|
||||
import path from 'path';
|
||||
import fs from 'node:fs/promises';
|
||||
import path from 'node:path';
|
||||
|
||||
export class Renovate {
|
||||
static dockerGroupRegex = /^docker:x:(?<groupId>[1-9][0-9]*):/m;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue