Skip to content

Commit 2daef55

Browse files
committed
chore: branding cleaning
Signed-off-by: Emilien Escalle <[email protected]>
1 parent 4e1d048 commit 2daef55

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ updates:
4141
- package-ecosystem: npm
4242
directory: "/"
4343
open-pull-requests-limit: 20
44-
versioning-strategy: widen
44+
versioning-strategy: increase
4545
schedule:
4646
interval: weekly
4747
day: friday

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.9.0
1+
20.19.3

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ USER ${UID}:${GID}
99
ENV RUN_LOCAL=true
1010
ENV USE_FIND_ALGORITHM=true
1111
ENV LOG_LEVEL=WARN
12-
ENV LOG_FILE="../logs"
12+
ENV LOG_FILE="/github/home/logs"

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright Hoverkraft
3+
Copyright hoverkraft
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: "Docker Compose Action"
22
description: "This action runs your compose file(s) and clean up before action finished"
3-
author: "Hoverkraft"
3+
author: "hoverkraft"
44
branding:
55
icon: anchor
6-
color: gray-dark
6+
color: blue
77

88
inputs:
99
docker-flags:

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
"name": "compose-action",
33
"description": "Docker Compose Action",
44
"version": "0.0.0",
5-
"author": "",
6-
"private": true,
5+
"author": "hoverkraft",
6+
"license": "MIT",
77
"homepage": "https://github.com/hoverkraft-tech/compose-action",
8+
"private": true,
89
"repository": {
910
"type": "git",
1011
"url": "git+https://github.com/hoverkraft-tech/compose-action.git"
@@ -22,6 +23,19 @@
2223
"engines": {
2324
"node": ">=20"
2425
},
26+
"dependencies": {
27+
"@actions/core": "^1.11.1",
28+
"@actions/github": "^6.0.1",
29+
"@actions/tool-cache": "^2.0.2",
30+
"@octokit/action": "^8.0.2",
31+
"docker-compose": "^1.2.0"
32+
},
33+
"devDependencies": {
34+
"@ts-dev-tools/core": "^1.6.2",
35+
"@vercel/ncc": "^0.38.3",
36+
"eslint-plugin-github": "^6.0.0",
37+
"eslint-plugin-jsonc": "^2.20.1"
38+
},
2539
"scripts": {
2640
"package": "npm run package:index && npm run package:post",
2741
"package:index": "ncc build src/index.ts -o dist --license licenses.txt",
@@ -38,7 +52,6 @@
3852
"test:ci": "npm run test:cov --runInBand",
3953
"prepare": "ts-dev-tools install"
4054
},
41-
"license": "MIT",
4255
"jest": {
4356
"preset": "ts-jest",
4457
"verbose": true,
@@ -71,19 +84,6 @@
7184
"**/src/**/*.[jt]s?(x)"
7285
]
7386
},
74-
"dependencies": {
75-
"@actions/core": "^1.11.1",
76-
"@actions/github": "^6.0.1",
77-
"@actions/tool-cache": "^2.0.2",
78-
"@octokit/action": "^8.0.2",
79-
"docker-compose": "^1.2.0"
80-
},
81-
"devDependencies": {
82-
"@ts-dev-tools/core": "^1.6.2",
83-
"@vercel/ncc": "^0.38.3",
84-
"eslint-plugin-github": "^6.0.0",
85-
"eslint-plugin-jsonc": "^2.20.1"
86-
},
8787
"eslintConfig": {
8888
"root": true,
8989
"parser": "@typescript-eslint/parser",

0 commit comments

Comments
 (0)