Skip to content

Commit 1d5755a

Browse files
authored
Merge pull request #750 from crazy-max/update-dependencies
update dependencies
2 parents 8afe711 + b692e6d commit 1d5755a

File tree

5 files changed

+1290
-369
lines changed

5 files changed

+1290
-369
lines changed

__tests__/undock/undock.test.itg.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ describe('run', () => {
4343
});
4444
})()
4545
).resolves.not.toThrow();
46-
}, 100000);
46+
}, 500000);
4747
});

__tests__/undock/undock.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ describe('run', () => {
3838
});
3939
})()
4040
).resolves.not.toThrow();
41-
}, 100000);
41+
}, 500000);
4242
});
4343

4444
describe('isAvailable', () => {

package.json

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
"@actions/io": "^1.1.3",
5555
"@actions/tool-cache": "^2.0.2",
5656
"@azure/storage-blob": "^12.15.0",
57-
"@octokit/core": "^5.1.0",
58-
"@octokit/plugin-rest-endpoint-methods": "^10.4.0",
57+
"@octokit/core": "^5.2.2",
58+
"@octokit/plugin-rest-endpoint-methods": "^10.4.1",
5959
"async-retry": "^1.3.3",
6060
"csv-parse": "^5.6.0",
6161
"gunzip-maybe": "^1.4.2",
@@ -65,30 +65,29 @@
6565
"jwt-decode": "^4.0.0",
6666
"semver": "^7.7.2",
6767
"tar-stream": "^3.1.7",
68-
"tmp": "^0.2.3"
68+
"tmp": "^0.2.4"
6969
},
7070
"devDependencies": {
71-
"@types/csv-parse": "^1.2.2",
7271
"@types/gunzip-maybe": "^1.4.2",
7372
"@types/he": "^1.2.3",
7473
"@types/js-yaml": "^4.0.9",
75-
"@types/node": "^20.12.10",
74+
"@types/node": "^20.19.9",
7675
"@types/semver": "^7.7.0",
77-
"@types/tar-stream": "^3.1.3",
76+
"@types/tar-stream": "^3.1.4",
7877
"@types/tmp": "^0.2.6",
79-
"@typescript-eslint/eslint-plugin": "^7.8.0",
80-
"@typescript-eslint/parser": "^7.8.0",
81-
"dotenv": "^16.4.5",
82-
"eslint": "^8.57.0",
83-
"eslint-config-prettier": "^9.1.0",
84-
"eslint-plugin-import": "^2.29.1",
85-
"eslint-plugin-jest": "^28.5.0",
86-
"eslint-plugin-prettier": "^5.1.3",
78+
"@typescript-eslint/eslint-plugin": "^7.18.0",
79+
"@typescript-eslint/parser": "^7.18.0",
80+
"dotenv": "^17.2.1",
81+
"eslint": "^8.57.1",
82+
"eslint-config-prettier": "^9.1.2",
83+
"eslint-plugin-import": "^2.32.0",
84+
"eslint-plugin-jest": "^28.14.0",
85+
"eslint-plugin-prettier": "^5.5.3",
8786
"jest": "^29.7.0",
88-
"prettier": "^3.2.5",
89-
"rimraf": "^5.0.5",
90-
"ts-jest": "^29.1.2",
87+
"prettier": "^3.6.2",
88+
"rimraf": "^6.0.1",
89+
"ts-jest": "^29.4.1",
9190
"ts-node": "^10.9.2",
92-
"typescript": "^5.4.5"
91+
"typescript": "^5.9.2"
9392
}
9493
}

src/github.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import crypto from 'crypto';
1818
import fs from 'fs';
1919
import he from 'he';
20-
import jsyaml from 'js-yaml';
20+
import {dump as yamldump} from 'js-yaml';
2121
import os from 'os';
2222
import path from 'path';
2323
import {CreateArtifactRequest, FinalizeArtifactRequest, StringValue} from '@actions/artifact/lib/generated';
@@ -357,7 +357,7 @@ export class GitHub {
357357
// prettier-ignore
358358
sum.addRaw(`<details><summary><strong>Build inputs</strong></summary>`)
359359
.addCodeBlock(
360-
jsyaml.dump(opts.inputs, {
360+
yamldump(opts.inputs, {
361361
indent: 2,
362362
lineWidth: -1
363363
}), 'yaml'

0 commit comments

Comments
 (0)