Compare commits

..

2 Commits

Author SHA1 Message Date
dependabot[bot]
2799547b71 chore(deps): bump docker-compose from 1.1.0 to 1.1.1
Some checks failed
Internal - Main - Continuous Integration / ci (push) Has been cancelled
Internal - Main - Continuous Integration / generate-readme (push) Has been cancelled
Bumps [docker-compose](https://github.com/PDMLab/docker-compose) from 1.1.0 to 1.1.1.
- [Changelog](https://github.com/PDMLab/docker-compose/blob/master/CHANGELOG.md)
- [Commits](https://github.com/PDMLab/docker-compose/compare/v1.1.0...v1.1.1)

---
updated-dependencies:
- dependency-name: docker-compose
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-02-14 14:01:22 +01:00
dependabot[bot]
f9146533dc chore(deps): bump hoverkraft-tech/ci-github-common
Bumps the github-actions-dependencies group with 1 update: [hoverkraft-tech/ci-github-common](https://github.com/hoverkraft-tech/ci-github-common).


Updates `hoverkraft-tech/ci-github-common` from 0.16.1 to 0.17.0
- [Release notes](https://github.com/hoverkraft-tech/ci-github-common/releases)
- [Commits](https://github.com/hoverkraft-tech/ci-github-common/compare/0.16.1...0.17.0)

---
updated-dependencies:
- dependency-name: hoverkraft-tech/ci-github-common
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-02-14 08:43:39 +01:00
9 changed files with 14 additions and 13 deletions

View File

@ -12,7 +12,7 @@ permissions:
jobs:
linter:
uses: hoverkraft-tech/ci-github-common/.github/workflows/linter.yml@0.16.1
uses: hoverkraft-tech/ci-github-common/.github/workflows/linter.yml@0.17.0
with:
linter-env: |
FILTER_REGEX_EXCLUDE=dist/**/*

View File

@ -13,4 +13,4 @@ permissions:
jobs:
greetings:
uses: hoverkraft-tech/ci-github-common/.github/workflows/greetings.yml@0.16.1
uses: hoverkraft-tech/ci-github-common/.github/workflows/greetings.yml@0.17.0

View File

@ -37,7 +37,7 @@ jobs:
app-id: ${{ vars.CI_BOT_APP_ID }}
private-key: ${{ secrets.CI_BOT_APP_PRIVATE_KEY }}
- uses: hoverkraft-tech/ci-github-common/actions/create-and-merge-pull-request@0.16.1
- uses: hoverkraft-tech/ci-github-common/actions/create-and-merge-pull-request@0.17.0
with:
github-token: ${{ steps.generate-token.outputs.token }}
branch: docs/actions-workflows-documentation-update

View File

@ -21,7 +21,7 @@ permissions:
jobs:
main:
uses: hoverkraft-tech/ci-github-common/.github/workflows/need-fix-to-issue.yml@0.16.1
uses: hoverkraft-tech/ci-github-common/.github/workflows/need-fix-to-issue.yml@0.17.0
with:
manual-commit-ref: ${{ inputs.manual-commit-ref }}
manual-base-ref: ${{ inputs.manual-base-ref }}

View File

@ -13,4 +13,4 @@ permissions:
jobs:
main:
uses: hoverkraft-tech/ci-github-common/.github/workflows/semantic-pull-request.yml@0.16.1
uses: hoverkraft-tech/ci-github-common/.github/workflows/semantic-pull-request.yml@0.17.0

View File

@ -10,4 +10,4 @@ permissions:
jobs:
main:
uses: hoverkraft-tech/ci-github-common/.github/workflows/stale.yml@0.16.1
uses: hoverkraft-tech/ci-github-common/.github/workflows/stale.yml@0.17.0

4
dist/index.js generated vendored
View File

@ -10481,7 +10481,7 @@ var version = function (options) {
});
};
exports.version = version;
var stats = function (service) {
var stats = function (service, options) {
return __awaiter(this, void 0, void 0, function () {
var args, result, output, error_8;
return __generator(this, function (_a) {
@ -10491,7 +10491,7 @@ var stats = function (service) {
_a.label = 1;
case 1:
_a.trys.push([1, 3, , 4]);
return [4 /*yield*/, (0, exports.execCompose)('stats', args)
return [4 /*yield*/, (0, exports.execCompose)('stats', args, options)
// Remove first and last quote from output, as well as newline.
];
case 2:

4
dist/post.js generated vendored
View File

@ -3772,7 +3772,7 @@ var version = function (options) {
});
};
exports.version = version;
var stats = function (service) {
var stats = function (service, options) {
return __awaiter(this, void 0, void 0, function () {
var args, result, output, error_8;
return __generator(this, function (_a) {
@ -3782,7 +3782,7 @@ var stats = function (service) {
_a.label = 1;
case 1:
_a.trys.push([1, 3, , 4]);
return [4 /*yield*/, (0, exports.execCompose)('stats', args)
return [4 /*yield*/, (0, exports.execCompose)('stats', args, options)
// Remove first and last quote from output, as well as newline.
];
case 2:

7
package-lock.json generated
View File

@ -3404,9 +3404,10 @@
}
},
"node_modules/docker-compose": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/docker-compose/-/docker-compose-1.1.0.tgz",
"integrity": "sha512-VrkQJNafPQ5d6bGULW0P6KqcxSkv3ZU5Wn2wQA19oB71o7+55vQ9ogFe2MMeNbK+jc9rrKVy280DnHO5JLMWOQ==",
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/docker-compose/-/docker-compose-1.1.1.tgz",
"integrity": "sha512-UkIUz0LtzuO17Ijm6SXMGtfZMs7IvbNwvuJBiBuN93PIhr/n9/sbJMqpvYFaCBGfwu1ZM4PPPDgQzeeke4lEoA==",
"license": "MIT",
"dependencies": {
"yaml": "^2.2.2"
},