Compare commits

..

8 Commits

Author SHA1 Message Date
semantic-release-bot
d290aa521b chore(release): 1.1.2 [skip ci]
## [1.1.2](https://github.com/KengoTODA/actions-setup-docker-compose/compare/v1.1.1...v1.1.2) (2023-01-20)

### Bug Fixes

* **deps:** update dependency @octokit/action to v5 ([ac725ff](ac725ffd08))
2023-01-20 23:52:29 +00:00
renovate[bot]
ac725ffd08 fix(deps): update dependency @octokit/action to v5 2023-01-21 07:51:23 +08:00
renovate[bot]
449fdc835d chore(deps): update jest monorepo to v29 2023-01-18 18:10:52 +08:00
renovate[bot]
922d499334 chore(deps): update dependency prettier to v2.8.3 2023-01-18 08:23:43 +08:00
Kengo TODA
eeb30c452b docs: update docs
Signed-off-by: Kengo TODA <skypencil@gmail.com>
2023-01-18 08:19:07 +08:00
Kengo TODA
254249d2c9 ci: replace dependabot with renovate
Signed-off-by: Kengo TODA <skypencil@gmail.com>
2023-01-18 08:19:07 +08:00
dependabot[bot]
6ec1cbd372 chore(deps-dev): bump @typescript-eslint/parser from 5.48.1 to 5.48.2
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 5.48.1 to 5.48.2.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.48.2/packages/parser)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-18 04:24:16 +08:00
dependabot[bot]
6aac390e20 chore(deps-dev): bump eslint from 8.31.0 to 8.32.0
Bumps [eslint](https://github.com/eslint/eslint) from 8.31.0 to 8.32.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v8.31.0...v8.32.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-17 15:16:22 +08:00
8 changed files with 1602 additions and 2320 deletions

View File

@@ -1,6 +0,0 @@
minApprovals:
NONE: 0
requiredLabels:
- dependencies
updateBranch: true
mergeMethod: rebase

View File

@@ -1,10 +0,0 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
commit-message:
prefix: fix
prefix-development: chore
include: scope

View File

@@ -12,12 +12,12 @@ Add a step to your workflow like below:
```yml
steps:
- uses: KengoTODA/actions-setup-docker-compose@main
- uses: KengoTODA/actions-setup-docker-compose@v1
with:
version: '2.14.2' # the full version of `docker-compose` command
```
Or you can omit it then set a `GITHUB_TOKEN` environment variable, to use the latest released version:
Or set a `GITHUB_TOKEN` environment variable, to use the latest released version:
```yml
steps:

220
dist/index.js vendored

File diff suppressed because one or more lines are too long

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

3656
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "@kengotoda/actions-setup-docker-compose",
"version": "1.1.1",
"version": "1.1.2",
"description": "the GitHub Action setting up docker-compose command",
"main": "lib/main.js",
"private": false,
@@ -31,7 +31,7 @@
"@actions/core": "^1.4.0",
"@actions/exec": "^1.1.0",
"@actions/tool-cache": "^2.0.1",
"@octokit/action": "^4.0.10"
"@octokit/action": "^5.0.0"
},
"devDependencies": {
"@semantic-release/exec": "^6.0.3",
@@ -42,11 +42,11 @@
"eslint": "^8.1.0",
"eslint-plugin-github": "^4.3.3",
"eslint-plugin-jest": "^27.0.1",
"jest": "^27.0.6",
"jest": "^29.0.0",
"js-yaml": "^4.1.0",
"prettier": "2.8.2",
"prettier": "2.8.3",
"semantic-release": "^19.0.2",
"ts-jest": "^27.0.3",
"ts-jest": "^29.0.0",
"typescript": "^4.3.5"
},
"release": {

14
renovate.json Normal file
View File

@@ -0,0 +1,14 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"packageRules": [
{
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
}
],
"extends": [
"config:base"
]
}