mirror of https://github.com/actions/toolkit
add debug
parent
32dbccb77b
commit
264230c2c5
File diff suppressed because it is too large
Load Diff
14
package.json
14
package.json
|
@ -32,5 +32,19 @@
|
||||||
"prettier": "^3.0.0",
|
"prettier": "^3.0.0",
|
||||||
"ts-jest": "^29.1.1",
|
"ts-jest": "^29.1.1",
|
||||||
"typescript": "^5.2.2"
|
"typescript": "^5.2.2"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@actions/artifact": "^2.1.7",
|
||||||
|
"@actions/attest": "^1.2.1",
|
||||||
|
"@actions/cache": "^3.2.4",
|
||||||
|
"@actions/core": "^1.10.1",
|
||||||
|
"@actions/exec": "^1.1.1",
|
||||||
|
"@actions/github": "^6.0.0",
|
||||||
|
"@actions/glob": "^0.4.0",
|
||||||
|
"@actions/http-client": "^2.2.1",
|
||||||
|
"@actions/io": "^1.1.3",
|
||||||
|
"@actions/tool-cache": "^2.0.1",
|
||||||
|
"tunnel": "^0.0.6",
|
||||||
|
"undici": "^6.18.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "@actions/attest",
|
"name": "@actions/attest",
|
||||||
"version": "1.2.0",
|
"version": "1.2.1",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@actions/attest",
|
"name": "@actions/attest",
|
||||||
"version": "1.2.0",
|
"version": "1.2.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.10.1",
|
"@actions/core": "^1.10.1",
|
||||||
|
|
|
@ -112,7 +112,7 @@ export async function getCacheEntry(
|
||||||
options?.enableCrossOsArchive
|
options?.enableCrossOsArchive
|
||||||
)
|
)
|
||||||
|
|
||||||
core.console.log(`We're running from the abyss`);
|
core.debug(`We're running from the abyss`);
|
||||||
|
|
||||||
const resource = `cache?keys=${encodeURIComponent(
|
const resource = `cache?keys=${encodeURIComponent(
|
||||||
keys.join(',')
|
keys.join(',')
|
||||||
|
|
Loading…
Reference in New Issue