mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-17 17:32:35 +00:00
chore(release): 27.12.0
This commit is contained in:
parent
2eb33375c9
commit
7e3c01dae3
3 changed files with 32 additions and 22 deletions
|
|
@ -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)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
21
dist/index.js
vendored
21
dist/index.js
vendored
|
|
@ -1923,8 +1923,7 @@ var external_path_default = /*#__PURE__*/__nccwpck_require__.n(external_path_);
|
||||||
|
|
||||||
|
|
||||||
class Input {
|
class Input {
|
||||||
constructor() {
|
options = {
|
||||||
this.options = {
|
|
||||||
envRegex: /^(?:RENOVATE_\w+|LOG_LEVEL)$/,
|
envRegex: /^(?:RENOVATE_\w+|LOG_LEVEL)$/,
|
||||||
configurationFile: {
|
configurationFile: {
|
||||||
input: 'configurationFile',
|
input: 'configurationFile',
|
||||||
|
|
@ -1937,6 +1936,10 @@ class Input {
|
||||||
optional: false,
|
optional: false,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
token;
|
||||||
|
_environmentVariables;
|
||||||
|
_configurationFile;
|
||||||
|
constructor() {
|
||||||
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
|
||||||
this.tag = '27.11.1-slim';
|
tag = '27.12.0-slim';
|
||||||
this.tagSuffix = '-slim';
|
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();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue