mirror of
https://github.com/obi1kenobi/cargo-semver-checks-action.git
synced 2024-11-23 08:29:33 +01:00
parent
17d9392a8c
commit
c7306483f6
3 changed files with 4 additions and 3 deletions
2
dist/index.js
vendored
2
dist/index.js
vendored
File diff suppressed because one or more lines are too long
|
@ -58,7 +58,7 @@ export class RustdocCache {
|
||||||
private async cacheKey(): Promise<string> {
|
private async cacheKey(): Promise<string> {
|
||||||
if (!this.__cacheKey) {
|
if (!this.__cacheKey) {
|
||||||
this.__cacheKey = [
|
this.__cacheKey = [
|
||||||
rustCore.input.getInput("prefix-key") || "",
|
rustCore.input.getInput("prefix-key") || "semver",
|
||||||
rustCore.input.getInput("shared-key") || this.getRunDependentKey(),
|
rustCore.input.getInput("shared-key") || this.getRunDependentKey(),
|
||||||
os.platform() as string,
|
os.platform() as string,
|
||||||
await getRustcVersion(),
|
await getRustcVersion(),
|
||||||
|
|
|
@ -3,8 +3,9 @@
|
||||||
"module": "commonjs",
|
"module": "commonjs",
|
||||||
"outDir": "dist",
|
"outDir": "dist",
|
||||||
"strict": true,
|
"strict": true,
|
||||||
|
"target": "ES2022"
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"src/**/*.ts"
|
"src/**/*.ts"
|
||||||
]
|
],
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue