Compare commits
26 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4f36636d26 | ||
|
|
529e482584 | ||
|
|
94505ab224 | ||
|
|
99a99b0ce1 | ||
|
|
0aff29778b | ||
|
|
f7cf161674 | ||
|
|
6da9b2d0d7 | ||
|
|
aed283069c | ||
|
|
05713aec34 | ||
|
|
beccad08ff | ||
|
|
e102caff1c | ||
|
|
7d7c596621 | ||
|
|
f0da2372f0 | ||
|
|
3176b2128b | ||
|
|
4b7d463e85 | ||
|
|
b147ab2dc3 | ||
|
|
dc2a9531b4 | ||
|
|
b46e5c8562 | ||
|
|
bba2af4e70 | ||
|
|
4cc49ff53b | ||
|
|
b9df1d9042 | ||
|
|
e2feed35a0 | ||
|
|
927e241fd0 | ||
|
|
7b24bbba8a | ||
|
|
a36b123594 | ||
|
|
ae178b9897 |
4
.github/workflows/semantic-tag.yml
vendored
4
.github/workflows/semantic-tag.yml
vendored
@@ -14,11 +14,11 @@ jobs:
|
||||
steps:
|
||||
# Release with semantic tag like v1.0.3
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ github.event.release.tag_name }}
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
- uses: actions/setup-node@v3
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version-file: '.nvmrc'
|
||||
- run: npm install semver
|
||||
|
||||
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
@@ -10,11 +10,11 @@ jobs:
|
||||
build: # make sure build/ci work properly
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
# Make sure the release step uses its own credentials.
|
||||
persist-credentials: false
|
||||
- uses: actions/setup-node@v3
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
cache: npm
|
||||
node-version-file: '.nvmrc'
|
||||
@@ -34,7 +34,7 @@ jobs:
|
||||
permissions:
|
||||
contents: read
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- uses: ./
|
||||
with:
|
||||
version: '1.26.2'
|
||||
@@ -56,7 +56,7 @@ jobs:
|
||||
checks: write
|
||||
pull-requests: write
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- uses: reviewdog/action-actionlint@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
@@ -9,5 +9,5 @@ branding:
|
||||
color: blue
|
||||
icon: play
|
||||
runs:
|
||||
using: 'node16'
|
||||
using: 'node20'
|
||||
main: 'dist/index.js'
|
||||
|
||||
2190
dist/index.js
vendored
2190
dist/index.js
vendored
File diff suppressed because it is too large
Load Diff
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
10703
package-lock.json
generated
10703
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
10
package.json
10
package.json
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@kengotoda/actions-setup-docker-compose",
|
||||
"version": "1.1.12",
|
||||
"version": "1.2.1",
|
||||
"description": "the GitHub Action setting up docker-compose command",
|
||||
"main": "lib/main.js",
|
||||
"private": false,
|
||||
@@ -36,16 +36,16 @@
|
||||
"devDependencies": {
|
||||
"@semantic-release/exec": "^6.0.3",
|
||||
"@semantic-release/git": "^10.0.1",
|
||||
"@types/node": "^18.0.0",
|
||||
"@types/node": "^20.0.0",
|
||||
"@typescript-eslint/parser": "^6.0.0",
|
||||
"@vercel/ncc": "^0.38.0",
|
||||
"eslint": "^8.1.0",
|
||||
"eslint-plugin-github": "^4.3.3",
|
||||
"eslint-plugin-github": "^4.10.1",
|
||||
"eslint-plugin-jest": "^27.0.1",
|
||||
"jest": "^29.0.0",
|
||||
"js-yaml": "^4.1.0",
|
||||
"prettier": "2.8.8",
|
||||
"semantic-release": "^19.0.2",
|
||||
"prettier": "3.1.0",
|
||||
"semantic-release": "^22.0.0",
|
||||
"ts-jest": "^29.0.0",
|
||||
"typescript": "^5.0.0"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user