Compare commits
56 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cfb74ce40e | ||
|
|
93d00b4e10 | ||
|
|
e87356189c | ||
|
|
2542dc7bda | ||
|
|
c87d0803cd | ||
|
|
e1d636c041 | ||
|
|
bf607ff4ce | ||
|
|
ab4f677e9f | ||
|
|
3886abddf4 | ||
|
|
28efd34757 | ||
|
|
974107073a | ||
|
|
4243b3e598 | ||
|
|
d4b8c23b3c | ||
|
|
334ec1260b | ||
|
|
7dcc07dd92 | ||
|
|
ad21e820ee | ||
|
|
0d3aab1cd5 | ||
|
|
0966955960 | ||
|
|
e4d2a240d4 | ||
|
|
a2aac90e7e | ||
|
|
827f5d3c0f | ||
|
|
00dfb2383d | ||
|
|
13d060c5f1 | ||
|
|
e1e32bfe18 | ||
|
|
9b7f843edf | ||
|
|
af82f57a85 | ||
|
|
2622ee4bec | ||
|
|
6be7a7cc42 | ||
|
|
46ac8da7d3 | ||
|
|
928c59c91c | ||
|
|
412335003a | ||
|
|
0e89ccd7f9 | ||
|
|
34318a1c47 | ||
|
|
5ad1c36665 | ||
|
|
f8229802b0 | ||
|
|
ac91a04f0a | ||
|
|
164a2a564e | ||
|
|
d290aa521b | ||
|
|
ac725ffd08 | ||
|
|
449fdc835d | ||
|
|
922d499334 | ||
|
|
eeb30c452b | ||
|
|
254249d2c9 | ||
|
|
6ec1cbd372 | ||
|
|
6aac390e20 | ||
|
|
159c52b091 | ||
|
|
81564afbc8 | ||
|
|
e2ee8b21c7 | ||
|
|
29bd6b73a7 | ||
|
|
74202d3196 | ||
|
|
90aa3913e5 | ||
|
|
9bf2650aa1 | ||
|
|
457e95eaa0 | ||
|
|
ee2c459220 | ||
|
|
112f631d6b | ||
|
|
2789a95ed9 |
6
.github/auto-merge.yml
vendored
6
.github/auto-merge.yml
vendored
@@ -1,6 +0,0 @@
|
||||
minApprovals:
|
||||
NONE: 0
|
||||
requiredLabels:
|
||||
- dependencies
|
||||
updateBranch: true
|
||||
mergeMethod: rebase
|
||||
10
.github/dependabot.yml
vendored
10
.github/dependabot.yml
vendored
@@ -1,10 +0,0 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: npm
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: daily
|
||||
commit-message:
|
||||
prefix: fix
|
||||
prefix-development: chore
|
||||
include: scope
|
||||
@@ -4,18 +4,20 @@
|
||||
|
||||
This action downloads the `docker-compose` command and add it to the `PATH` for following executions. It supports the Linux environment only.
|
||||
|
||||
⚠ The `docker-compose` command is now deprecated, consider to use the `docker compose` sub command instead. Refer to [Docker official blog](https://www.docker.com/blog/announcing-compose-v2-general-availability/) for detail.
|
||||
|
||||
## How to use
|
||||
|
||||
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:
|
||||
|
||||
268
dist/index.js
vendored
268
dist/index.js
vendored
File diff suppressed because one or more lines are too long
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
5154
package-lock.json
generated
5154
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
12
package.json
12
package.json
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@kengotoda/actions-setup-docker-compose",
|
||||
"version": "1.1.0",
|
||||
"version": "1.1.3",
|
||||
"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,12 +42,12 @@
|
||||
"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.1",
|
||||
"prettier": "2.8.8",
|
||||
"semantic-release": "^19.0.2",
|
||||
"ts-jest": "^27.0.3",
|
||||
"typescript": "^4.3.5"
|
||||
"ts-jest": "^29.0.0",
|
||||
"typescript": "^5.0.0"
|
||||
},
|
||||
"release": {
|
||||
"branches": "main",
|
||||
|
||||
14
renovate.json
Normal file
14
renovate.json
Normal 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"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user