Compare commits

..

No commits in common. "59a51a1b9c95890b0e28dbfed9a4c62842b0cd77" and "4e1d048b27aa3ce52ac091c9005932c184221477" have entirely different histories.

7 changed files with 24 additions and 24 deletions

View File

@ -41,7 +41,7 @@ updates:
- package-ecosystem: npm
directory: "/"
open-pull-requests-limit: 20
versioning-strategy: increase
versioning-strategy: widen
schedule:
interval: weekly
day: friday

View File

@ -1 +1 @@
20.19.3
20.9.0

View File

@ -9,4 +9,4 @@ USER ${UID}:${GID}
ENV RUN_LOCAL=true
ENV USE_FIND_ALGORITHM=true
ENV LOG_LEVEL=WARN
ENV LOG_FILE="/github/home/logs"
ENV LOG_FILE="../logs"

View File

@ -1,6 +1,6 @@
MIT License
Copyright hoverkraft
Copyright Hoverkraft
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in

View File

@ -2,12 +2,12 @@
<div align="center" width="100%">
<!-- start branding -->
<img src=".github/ghadocs/branding.svg" width="15%" align="center" alt="branding<icon:anchor color:blue>" />
<img src=".github/ghadocs/branding.svg" width="15%" align="center" alt="branding<icon:anchor color:gray-dark>" />
<!-- end branding -->
<!-- start title -->
# <img src=".github/ghadocs/branding.svg" width="60px" align="center" alt="branding<icon:anchor color:blue>" /> GitHub Action: Docker Compose Action
# <img src=".github/ghadocs/branding.svg" width="60px" align="center" alt="branding<icon:anchor color:gray-dark>" /> GitHub Action: Docker Compose Action
<!-- end title -->
<!-- markdownlint-disable MD013 -->

View File

@ -1,9 +1,9 @@
name: "Docker Compose Action"
description: "This action runs your compose file(s) and clean up before action finished"
author: "hoverkraft"
author: "Hoverkraft"
branding:
icon: anchor
color: blue
color: gray-dark
inputs:
docker-flags:

View File

@ -2,10 +2,9 @@
"name": "compose-action",
"description": "Docker Compose Action",
"version": "0.0.0",
"author": "hoverkraft",
"license": "MIT",
"homepage": "https://github.com/hoverkraft-tech/compose-action",
"author": "",
"private": true,
"homepage": "https://github.com/hoverkraft-tech/compose-action",
"repository": {
"type": "git",
"url": "git+https://github.com/hoverkraft-tech/compose-action.git"
@ -23,19 +22,6 @@
"engines": {
"node": ">=20"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@actions/tool-cache": "^2.0.2",
"@octokit/action": "^8.0.2",
"docker-compose": "^1.2.0"
},
"devDependencies": {
"@ts-dev-tools/core": "^1.6.2",
"@vercel/ncc": "^0.38.3",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-jsonc": "^2.20.1"
},
"scripts": {
"package": "npm run package:index && npm run package:post",
"package:index": "ncc build src/index.ts -o dist --license licenses.txt",
@ -52,6 +38,7 @@
"test:ci": "npm run test:cov --runInBand",
"prepare": "ts-dev-tools install"
},
"license": "MIT",
"jest": {
"preset": "ts-jest",
"verbose": true,
@ -84,6 +71,19 @@
"**/src/**/*.[jt]s?(x)"
]
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@actions/tool-cache": "^2.0.2",
"@octokit/action": "^8.0.2",
"docker-compose": "^1.2.0"
},
"devDependencies": {
"@ts-dev-tools/core": "^1.6.2",
"@vercel/ncc": "^0.38.3",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-jsonc": "^2.20.1"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",