chore(release): 27.12.0

This commit is contained in:
github-actions[bot] 2021-09-17 12:52:50 +00:00
parent 2eb33375c9
commit 7e3c01dae3
3 changed files with 32 additions and 22 deletions

View file

@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
## [27.12.0](https://github.com/renovatebot/github-action/compare/v27.11.1...v27.12.0) (2021-09-17)
### Bug Fixes
* **deps:** update renovate/renovate docker tag to v27.12.0 ([c7bc45b](https://github.com/renovatebot/github-action/commit/c7bc45b8cd0cba0fff7f65c9bb67c7b0ce9a82f5))
### [27.11.1](https://github.com/renovatebot/github-action/compare/v27.8.2...v27.11.1) (2021-09-16) ### [27.11.1](https://github.com/renovatebot/github-action/compare/v27.8.2...v27.11.1) (2021-09-16)

45
dist/index.js vendored
View file

@ -1923,20 +1923,23 @@ var external_path_default = /*#__PURE__*/__nccwpck_require__.n(external_path_);
class Input { class Input {
options = {
envRegex: /^(?:RENOVATE_\w+|LOG_LEVEL)$/,
configurationFile: {
input: 'configurationFile',
env: 'RENOVATE_CONFIG_FILE',
optional: true,
},
token: {
input: 'token',
env: 'RENOVATE_TOKEN',
optional: false,
},
};
token;
_environmentVariables;
_configurationFile;
constructor() { constructor() {
this.options = {
envRegex: /^(?:RENOVATE_\w+|LOG_LEVEL)$/,
configurationFile: {
input: 'configurationFile',
env: 'RENOVATE_CONFIG_FILE',
optional: true,
},
token: {
input: 'token',
env: 'RENOVATE_TOKEN',
optional: false,
},
};
this._environmentVariables = new Map(Object.entries(process.env).filter(([key]) => this.options.envRegex.test(key))); this._environmentVariables = new Map(Object.entries(process.env).filter(([key]) => this.options.envRegex.test(key)));
this.token = this.get(this.options.token.input, this.options.token.env, this.options.token.optional); this.token = this.get(this.options.token.input, this.options.token.env, this.options.token.optional);
this._configurationFile = this.get(this.options.configurationFile.input, this.options.configurationFile.env, this.options.configurationFile.optional); this._configurationFile = this.get(this.options.configurationFile.input, this.options.configurationFile.env, this.options.configurationFile.optional);
@ -1984,12 +1987,10 @@ class Input {
;// CONCATENATED MODULE: ./src/docker.ts ;// CONCATENATED MODULE: ./src/docker.ts
class Docker { class Docker {
constructor() { repository = 'renovate/renovate';
this.repository = 'renovate/renovate'; // renovate: datasource=docker depName=renovate/renovate versioning=docker
// renovate: datasource=docker depName=renovate/renovate versioning=docker tag = '27.12.0-slim';
this.tag = '27.11.1-slim'; tagSuffix = '-slim';
this.tagSuffix = '-slim';
}
image() { image() {
return `${this.repository}:${this.tag}`; return `${this.repository}:${this.tag}`;
} }
@ -2010,10 +2011,12 @@ var external_fs_default = /*#__PURE__*/__nccwpck_require__.n(external_fs_);
class Renovate { class Renovate {
input;
dockerGroupName = 'docker';
configFileMountDir = '/github-action';
docker;
constructor(input) { constructor(input) {
this.input = input; this.input = input;
this.dockerGroupName = 'docker';
this.configFileMountDir = '/github-action';
this.validateArguments(); this.validateArguments();
this.docker = new docker(); this.docker = new docker();
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "github-action", "name": "github-action",
"version": "27.11.1", "version": "27.12.0",
"description": "GitHub Action to run Renovate self-hosted.", "description": "GitHub Action to run Renovate self-hosted.",
"private": true, "private": true,
"main": "src/index.ts", "main": "src/index.ts",